Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

PagedSurveyListDTO.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

PagedSurveyListDTO

Properties

Name Type Description Notes
total_items int The total number of items [optional]
page int The current page [optional]
items List[SurveyListDTO] The list of surveys [optional]

Example

from data_bridges_client.models.paged_survey_list_dto import PagedSurveyListDTO

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

# convert the object into a dict
paged_survey_list_dto_dict = paged_survey_list_dto_instance.to_dict()
# create an instance of PagedSurveyListDTO from a dict
paged_survey_list_dto_from_dict = PagedSurveyListDTO.from_dict(paged_survey_list_dto_dict)

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