| Name | Type | Description | Notes |
|---|---|---|---|
| links | PaginatedResponseLinks | ||
| page_size | int | ||
| total_count | int | ||
| data | List[Trace] |
from sensorbucket.models.list_traces200_response import ListTraces200Response
# TODO update the JSON string below
json = "{}"
# create an instance of ListTraces200Response from a JSON string
list_traces200_response_instance = ListTraces200Response.from_json(json)
# print the JSON string representation of the object
print(ListTraces200Response.to_json())
# convert the object into a dict
list_traces200_response_dict = list_traces200_response_instance.to_dict()
# create an instance of ListTraces200Response from a dict
list_traces200_response_from_dict = ListTraces200Response.from_dict(list_traces200_response_dict)