Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 898 Bytes

File metadata and controls

28 lines (20 loc) · 898 Bytes

ListResponse

Properties

Name Type Description Notes
files List[ReportListing] [optional]

Example

from sensorpush_api.models.list_response import ListResponse

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

# convert the object into a dict
list_response_dict = list_response_instance.to_dict()
# create an instance of ListResponse from a dict
list_response_from_dict = ListResponse.from_dict(list_response_dict)

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