Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.83 KB

File metadata and controls

38 lines (29 loc) · 2.83 KB

IntegrationEventV3Request

Properties

Name Type Description Notes
profile_id str ID of the customer profile set by your integration layer. Note: If the customer does not yet have a known `profileId`, we recommend you use a guest `profileId`.
store_integration_id str The integration ID of the store. You choose this ID when you create a store. [optional]
evaluable_campaign_ids List[int] When using the `dry` query parameter, use this property to list the campaign to be evaluated by the Rule Engine. These campaigns will be evaluated, even if they are disabled, allowing you to test specific campaigns before activating them. [optional]
integration_id str The unique ID of the current event. Only one event with this ID could be activated, duplicated events are forbidden.
type str A string representing the event name. Must not be a reserved event name. You create this value when you create an attribute of type `event` in the Campaign Manager.
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]
connected_session_id str The ID of the session that happened in the past. [optional]
previous_event_id str The unique identifier of the event that happened in the past. [optional]
loyalty_cards List[str] Identifiers of the loyalty cards used during this event. [optional]
response_content List[str] Optional list of requested information to be present on the response related to the tracking custom event. [optional]

Example

from talon_one.models.integration_event_v3_request import IntegrationEventV3Request

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

# convert the object into a dict
integration_event_v3_request_dict = integration_event_v3_request_instance.to_dict()
# create an instance of IntegrationEventV3Request from a dict
integration_event_v3_request_from_dict = IntegrationEventV3Request.from_dict(integration_event_v3_request_dict)

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