Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

File metadata and controls

33 lines (24 loc) · 1.14 KB

PageOrganizationResponse

Properties

Name Type Description Notes
items List[OrganizationResponse]
total int
page int
size int
pages int

Example

from codegen_api_client.models.page_organization_response import PageOrganizationResponse

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

# convert the object into a dict
page_organization_response_dict = page_organization_response_instance.to_dict()
# create an instance of PageOrganizationResponse from a dict
page_organization_response_from_dict = PageOrganizationResponse.from_dict(page_organization_response_dict)

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