Name |
Type |
Description |
Notes |
total_items |
int |
The total number of responses |
[optional] |
page |
int |
The current page |
[optional] |
items |
List[object] |
The list of survey responses |
[optional] |
from data_bridges_client.models.paged_survey_responses_dto import PagedSurveyResponsesDTO
# TODO update the JSON string below
json = "{}"
# create an instance of PagedSurveyResponsesDTO from a JSON string
paged_survey_responses_dto_instance = PagedSurveyResponsesDTO.from_json(json)
# print the JSON string representation of the object
print(PagedSurveyResponsesDTO.to_json())
# convert the object into a dict
paged_survey_responses_dto_dict = paged_survey_responses_dto_instance.to_dict()
# create an instance of PagedSurveyResponsesDTO from a dict
paged_survey_responses_dto_from_dict = PagedSurveyResponsesDTO.from_dict(paged_survey_responses_dto_dict)
[Back to Model list] [Back to API list] [Back to README]