Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.18 KB

File metadata and controls

28 lines (20 loc) · 1.18 KB

OtpTemplate404Response

Properties

Name Type Description Notes
message str Model not found This error can occur when the template identifier is specified incorrectly or the specified template is not present in the system. Please ensure that you are using the correct template identifier and try again. [optional]

Example

from bsg_api.models.otp_template404_response import OtpTemplate404Response

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

# convert the object into a dict
otp_template404_response_dict = otp_template404_response_instance.to_dict()
# create an instance of OtpTemplate404Response from a dict
otp_template404_response_from_dict = OtpTemplate404Response.from_dict(otp_template404_response_dict)

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