Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

Notificationsv3TemplateProperty

A single property to be added or updated for data layout processing.

Properties

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]

Example

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)

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