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
It may be one of the following: - Template 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
frombsg_api.models.otp_template_delete404_responseimportOtpTemplateDelete404Response# TODO update the JSON string belowjson="{}"# create an instance of OtpTemplateDelete404Response from a JSON stringotp_template_delete404_response_instance=OtpTemplateDelete404Response.from_json(json)
# print the JSON string representation of the objectprint(OtpTemplateDelete404Response.to_json())
# convert the object into a dictotp_template_delete404_response_dict=otp_template_delete404_response_instance.to_dict()
# create an instance of OtpTemplateDelete404Response from a dictotp_template_delete404_response_from_dict=OtpTemplateDelete404Response.from_dict(otp_template_delete404_response_dict)