from t3api.models.metrc_driver import MetrcDriver
# TODO update the JSON string below
json = "{}"
# create an instance of MetrcDriver from a JSON string
metrc_driver_instance = MetrcDriver.from_json(json)
# print the JSON string representation of the object
print(MetrcDriver.to_json())
# convert the object into a dict
metrc_driver_dict = metrc_driver_instance.to_dict()
# create an instance of MetrcDriver from a dict
metrc_driver_from_dict = MetrcDriver.from_dict(metrc_driver_dict){{ message }}
