Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

PaginatedBundleList

Properties

Name Type Description Notes
previous str The cursor used to obtain the current result page. [optional]
next str The cursor with which to continue pagination if additional result pages exist. [optional]
total_count int The total number of items in the result set. [optional]
bundles List[Bundle]

Example

from opal_security.models.paginated_bundle_list import PaginatedBundleList

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

# convert the object into a dict
paginated_bundle_list_dict = paginated_bundle_list_instance.to_dict()
# create an instance of PaginatedBundleList from a dict
paginated_bundle_list_from_dict = PaginatedBundleList.from_dict(paginated_bundle_list_dict)

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