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.v2_auth_credentials_post_requestimportV2AuthCredentialsPostRequest# TODO update the JSON string belowjson="{}"# create an instance of V2AuthCredentialsPostRequest from a JSON stringv2_auth_credentials_post_request_instance=V2AuthCredentialsPostRequest.from_json(json)
# print the JSON string representation of the objectprint(V2AuthCredentialsPostRequest.to_json())
# convert the object into a dictv2_auth_credentials_post_request_dict=v2_auth_credentials_post_request_instance.to_dict()
# create an instance of V2AuthCredentialsPostRequest from a dictv2_auth_credentials_post_request_from_dict=V2AuthCredentialsPostRequest.from_dict(v2_auth_credentials_post_request_dict)