| Name |
Type |
Description |
Notes |
| next |
str |
The cursor with which to continue pagination if additional result pages exist. |
[optional] |
| previous |
str |
The cursor used to obtain the current result page. |
[optional] |
| results |
List[Resource] |
|
|
from opal_security.models.paginated_resources_list import PaginatedResourcesList
# TODO update the JSON string below
json = "{}"
# create an instance of PaginatedResourcesList from a JSON string
paginated_resources_list_instance = PaginatedResourcesList.from_json(json)
# print the JSON string representation of the object
print(PaginatedResourcesList.to_json())
# convert the object into a dict
paginated_resources_list_dict = paginated_resources_list_instance.to_dict()
# create an instance of PaginatedResourcesList from a dict
paginated_resources_list_from_dict = PaginatedResourcesList.from_dict(paginated_resources_list_dict)
[Back to Model list] [Back to API list] [Back to README]