Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.52 KB

File metadata and controls

38 lines (29 loc) · 1.52 KB

MetrcHistory

Properties

Name Type Description Notes
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]
license_number str License number used to access this object [optional]
descriptions List[str] [optional]
user_name str [optional]
actual_date date [optional]
recorded_date_time datetime [optional]
input_sources_names str Name of the user responsible for this event [optional]
external_source_name str Name of the third party software source, if applicable [optional]

Example

from t3api.models.metrc_history import MetrcHistory

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

# convert the object into a dict
metrc_history_dict = metrc_history_instance.to_dict()
# create an instance of MetrcHistory from a dict
metrc_history_from_dict = MetrcHistory.from_dict(metrc_history_dict)

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