Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.48 KB

File metadata and controls

34 lines (25 loc) · 1.48 KB

MetrcPlantBatchReportResponse

Properties

Name Type Description Notes
generated_at datetime [optional]
filters List[str] [optional]
filter_logic str The filter logic specified for this report, if any [optional]
sort str The sort order specified for this report, if any [optional]
license_number str The unique identifier for the license associated with this request. [optional]
data List[MetrcPlantBatch] [optional]

Example

from t3api.models.metrc_plant_batch_report_response import MetrcPlantBatchReportResponse

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

# convert the object into a dict
metrc_plant_batch_report_response_dict = metrc_plant_batch_report_response_instance.to_dict()
# create an instance of MetrcPlantBatchReportResponse from a dict
metrc_plant_batch_report_response_from_dict = MetrcPlantBatchReportResponse.from_dict(metrc_plant_batch_report_response_dict)

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