Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.29 KB

File metadata and controls

35 lines (26 loc) · 1.29 KB

MetrcDriver

Properties

Name Type Description Notes
drivers_license_number str Driver's license number. [optional]
employee_id str Employee identifier. [optional]
facility_id int Facility identifier. [optional]
id int Unique identifier for the driver. [optional]
is_archived bool Indicates if the driver is archived. [optional]
last_modified datetime Date and time the driver information was last modified. [optional]
name str Name of the driver. [optional]

Example

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)

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