A schema representing a facility with various details including license, address, and contact information.
| Name | Type | Description | Notes |
|---|---|---|---|
| license_number | str | License number of the facility. | [optional] |
| facility_name | str | Name of the facility. | [optional] |
| id | int | Unique identifier of the facility. | [optional] |
| hostname | str | The hostname this object was retrieved from | [optional] |
| data_model | str | Name of this object's data model | [optional] |
| retrieved_at | datetime | Timestamp of when this object was pulled from Metrc | [optional] |
| index | str | The current state of this object. | [optional] |
| facility_type_name | str | Type of the facility. | [optional] |
| facility_type | str | Type code of the facility. | [optional] |
| physical_address | MetrcFacilityPhysicalAddress | [optional] | |
| main_phone_number | str | Main phone number of the facility. | [optional] |
| mobile_phone_number | str | Mobile phone number of the facility. | [optional] |
from t3api.models.metrc_facility import MetrcFacility
# TODO update the JSON string below
json = "{}"
# create an instance of MetrcFacility from a JSON string
metrc_facility_instance = MetrcFacility.from_json(json)
# print the JSON string representation of the object
print(MetrcFacility.to_json())
# convert the object into a dict
metrc_facility_dict = metrc_facility_instance.to_dict()
# create an instance of MetrcFacility from a dict
metrc_facility_from_dict = MetrcFacility.from_dict(metrc_facility_dict)