You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Timestamp of when this object was pulled from Metrc
[optional]
license_number
str
License number used to access this object
[optional]
harvested_by_facility_license_number
str
[optional]
harvested_by_facility_name
str
[optional]
name
str
[optional]
harvest_type_name
str
[optional]
lab_testing_state_name
str
[optional]
lab_testing_state_date
str
[optional]
is_on_hold
bool
[optional]
harvest_start_date
date
[optional]
Example
fromt3api.models.metrc_package_source_harvestimportMetrcPackageSourceHarvest# TODO update the JSON string belowjson="{}"# create an instance of MetrcPackageSourceHarvest from a JSON stringmetrc_package_source_harvest_instance=MetrcPackageSourceHarvest.from_json(json)
# print the JSON string representation of the objectprint(MetrcPackageSourceHarvest.to_json())
# convert the object into a dictmetrc_package_source_harvest_dict=metrc_package_source_harvest_instance.to_dict()
# create an instance of MetrcPackageSourceHarvest from a dictmetrc_package_source_harvest_from_dict=MetrcPackageSourceHarvest.from_dict(metrc_package_source_harvest_dict)