Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.12 KB

File metadata and controls

28 lines (20 loc) · 1.12 KB

MessageTemplateTemplateOneOf1

Properties

Name Type Description Notes
message str The body of the SMS message. Max length 160 characters.

Example

from onelogin.models.message_template_template_one_of1 import MessageTemplateTemplateOneOf1

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

# convert the object into a dict
message_template_template_one_of1_dict = message_template_template_one_of1_instance.to_dict()
# create an instance of MessageTemplateTemplateOneOf1 from a dict
message_template_template_one_of1_form_dict = message_template_template_one_of1.from_dict(message_template_template_one_of1_dict)

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