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
The Metrc hostname you use to login. For example, a California user would use ca.metrc.com.
otp
str
(MI only) a valid one-time password
[optional]
Example
fromt3api.models.metrc_credential_auth_payloadimportMetrcCredentialAuthPayload# TODO update the JSON string belowjson="{}"# create an instance of MetrcCredentialAuthPayload from a JSON stringmetrc_credential_auth_payload_instance=MetrcCredentialAuthPayload.from_json(json)
# print the JSON string representation of the objectprint(MetrcCredentialAuthPayload.to_json())
# convert the object into a dictmetrc_credential_auth_payload_dict=metrc_credential_auth_payload_instance.to_dict()
# create an instance of MetrcCredentialAuthPayload from a dictmetrc_credential_auth_payload_from_dict=MetrcCredentialAuthPayload.from_dict(metrc_credential_auth_payload_dict)