Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

MfaUnauthorizedRequestError.md

File metadata and controls

29 lines (20 loc) · 1.05 KB

MfaUnauthorizedRequestError

Properties

Name Type Description Notes
message str Unauthorized [optional]

Example

from bandwidth.models.mfa_unauthorized_request_error import MfaUnauthorizedRequestError

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

# convert the object into a dict
mfa_unauthorized_request_error_dict = mfa_unauthorized_request_error_instance.to_dict()
# create an instance of MfaUnauthorizedRequestError from a dict
mfa_unauthorized_request_error_from_dict = MfaUnauthorizedRequestError.from_dict(mfa_unauthorized_request_error_dict)

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