Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.41 KB

File metadata and controls

30 lines (21 loc) · 1.41 KB

EventAttributesEntity

Properties

Name Type Description Notes
type str The name of the event. Must be a custom event, not a built-in event.
attributes object Arbitrary additional JSON properties associated with the event. They must be created in the Campaign Manager before setting them with this property. See creating custom attributes. [optional]

Example

from talon_one.models.event_attributes_entity import EventAttributesEntity

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

# convert the object into a dict
event_attributes_entity_dict = event_attributes_entity_instance.to_dict()
# create an instance of EventAttributesEntity from a dict
event_attributes_entity_from_dict = EventAttributesEntity.from_dict(event_attributes_entity_dict)

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