| Name |
Type |
Description |
Notes |
| page |
int |
|
[optional] |
| total_pages |
int |
|
[optional] |
| page_size |
int |
|
[optional] |
| total |
int |
|
[optional] |
| data |
List[MetrcHistory] |
|
[optional] |
from t3api.models.metrc_history_list_response import MetrcHistoryListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MetrcHistoryListResponse from a JSON string
metrc_history_list_response_instance = MetrcHistoryListResponse.from_json(json)
# print the JSON string representation of the object
print(MetrcHistoryListResponse.to_json())
# convert the object into a dict
metrc_history_list_response_dict = metrc_history_list_response_instance.to_dict()
# create an instance of MetrcHistoryListResponse from a dict
metrc_history_list_response_from_dict = MetrcHistoryListResponse.from_dict(metrc_history_list_response_dict)
[Back to Model list] [Back to API list] [Back to README]