Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

MetrcTransferDeliveryListResponse

Properties

Name Type Description Notes
page int [optional]
total_pages int [optional]
page_size int [optional]
total int [optional]
data List[MetrcTransferDelivery] [optional]

Example

from t3api.models.metrc_transfer_delivery_list_response import MetrcTransferDeliveryListResponse

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

# convert the object into a dict
metrc_transfer_delivery_list_response_dict = metrc_transfer_delivery_list_response_instance.to_dict()
# create an instance of MetrcTransferDeliveryListResponse from a dict
metrc_transfer_delivery_list_response_from_dict = MetrcTransferDeliveryListResponse.from_dict(metrc_transfer_delivery_list_response_dict)

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