Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

PaginatedBundleGroupList

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]
bundle_groups List[BundleGroup]

Example

from opal_security.models.paginated_bundle_group_list import PaginatedBundleGroupList

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

# convert the object into a dict
paginated_bundle_group_list_dict = paginated_bundle_group_list_instance.to_dict()
# create an instance of PaginatedBundleGroupList from a dict
paginated_bundle_group_list_from_dict = PaginatedBundleGroupList.from_dict(paginated_bundle_group_list_dict)

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