| Name | Type | Description | Notes |
|---|---|---|---|
| files | List[ReportListing] | [optional] |
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)