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: - Default template is not available for deletion This error occurs when attempting to delete a template that is set as the default template. The default template cannot be deleted.
[optional]
Example
frombsg_api.models.otp_template_delete422_responseimportOtpTemplateDelete422Response# TODO update the JSON string belowjson="{}"# create an instance of OtpTemplateDelete422Response from a JSON stringotp_template_delete422_response_instance=OtpTemplateDelete422Response.from_json(json)
# print the JSON string representation of the objectprint(OtpTemplateDelete422Response.to_json())
# convert the object into a dictotp_template_delete422_response_dict=otp_template_delete422_response_instance.to_dict()
# create an instance of OtpTemplateDelete422Response from a dictotp_template_delete422_response_from_dict=OtpTemplateDelete422Response.from_dict(otp_template_delete422_response_dict)