Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

ViewPagedModelDTO

Properties

Name Type Description Notes
content List[ViewResponseDTO] [optional]
links List[object] define keys links and page that are mandatory for all pageble responses [optional]
page PageDTO [optional]

Example

from cm_python_openapi_sdk.models.view_paged_model_dto import ViewPagedModelDTO

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

# convert the object into a dict
view_paged_model_dto_dict = view_paged_model_dto_instance.to_dict()
# create an instance of ViewPagedModelDTO from a dict
view_paged_model_dto_from_dict = ViewPagedModelDTO.from_dict(view_paged_model_dto_dict)

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