Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

MfaRequestError.md

File metadata and controls

30 lines (21 loc) · 1 KB

MfaRequestError

Properties

Name Type Description Notes
error str A message describing the error with your request. [optional]
request_id str The associated requestId from AWS. [optional]

Example

from bandwidth.models.mfa_request_error import MfaRequestError

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

# convert the object into a dict
mfa_request_error_dict = mfa_request_error_instance.to_dict()
# create an instance of MfaRequestError from a dict
mfa_request_error_from_dict = MfaRequestError.from_dict(mfa_request_error_dict)

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