| Name | Type | Description | Notes |
|---|---|---|---|
| reason_selector | ReasonSelector | [optional] | |
| template | TemplateContent | [optional] |
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)