A single property to be added or updated for data layout processing.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The name of a property to be used in the notification data layout. | [optional] |
| value | str | The value associated with the property name in the notifications data layout. | [optional] |
from ibm_gdsc_sdk_saas.models.notificationsv3_template_property import Notificationsv3TemplateProperty
# TODO update the JSON string below
json = "{}"
# create an instance of Notificationsv3TemplateProperty from a JSON string
notificationsv3_template_property_instance = Notificationsv3TemplateProperty.from_json(json)
# print the JSON string representation of the object
print(Notificationsv3TemplateProperty.to_json())
# convert the object into a dict
notificationsv3_template_property_dict = notificationsv3_template_property_instance.to_dict()
# create an instance of Notificationsv3TemplateProperty from a dict
notificationsv3_template_property_from_dict = Notificationsv3TemplateProperty.from_dict(notificationsv3_template_property_dict)