Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

PaginatedOwnersList

Properties

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[Owner]

Example

from opal_security.models.paginated_owners_list import PaginatedOwnersList

# TODO update the JSON string below
json = "{}"
# create an instance of PaginatedOwnersList from a JSON string
paginated_owners_list_instance = PaginatedOwnersList.from_json(json)
# print the JSON string representation of the object
print(PaginatedOwnersList.to_json())

# convert the object into a dict
paginated_owners_list_dict = paginated_owners_list_instance.to_dict()
# create an instance of PaginatedOwnersList from a dict
paginated_owners_list_from_dict = PaginatedOwnersList.from_dict(paginated_owners_list_dict)

[Back to Model list] [Back to API list] [Back to README]