Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

NotificationTemplateSpec

Properties

Name Type Description Notes
reason_selector ReasonSelector [optional]
template TemplateContent [optional]

Example

from halo_client.models.notification_template_spec import NotificationTemplateSpec

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

# convert the object into a dict
notification_template_spec_dict = notification_template_spec_instance.to_dict()
# create an instance of NotificationTemplateSpec from a dict
notification_template_spec_from_dict = NotificationTemplateSpec.from_dict(notification_template_spec_dict)

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