You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Page number, starts from 1. If not set or equal to 0, it means no pagination.
size
int
Size of each page. If not set or equal to 0, it means no pagination.
total
int
Total elements.
total_pages
int
Indicates total pages.
Example
fromhalo_client.models.extension_point_definition_listimportExtensionPointDefinitionList# TODO update the JSON string belowjson="{}"# create an instance of ExtensionPointDefinitionList from a JSON stringextension_point_definition_list_instance=ExtensionPointDefinitionList.from_json(json)
# print the JSON string representation of the objectprint(ExtensionPointDefinitionList.to_json())
# convert the object into a dictextension_point_definition_list_dict=extension_point_definition_list_instance.to_dict()
# create an instance of ExtensionPointDefinitionList from a dictextension_point_definition_list_from_dict=ExtensionPointDefinitionList.from_dict(extension_point_definition_list_dict)