Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.28 KB

File metadata and controls

29 lines (21 loc) · 1.28 KB

CancelOtp404Response

Properties

Name Type Description Notes
message str TwoFA Service error. [optional]
errors List[str] It may be one of the following: - Authentication not found - This error can occur when the authentication identifier is specified incorrectly or the specified authentication is not present in the system. Please ensure that you are using the correct authentication identifier and try again. [optional]

Example

from bsg_api.models.cancel_otp404_response import CancelOtp404Response

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

# convert the object into a dict
cancel_otp404_response_dict = cancel_otp404_response_instance.to_dict()
# create an instance of CancelOtp404Response from a dict
cancel_otp404_response_from_dict = CancelOtp404Response.from_dict(cancel_otp404_response_dict)

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