Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.18 KB

File metadata and controls

37 lines (28 loc) · 2.18 KB

IntegrationEventV3Response

Properties

Name Type Description Notes
customer_profile CustomerProfile The customer profile associated with the event. [optional]
loyalty Loyalty The loyalty program status of the customer. [optional]
triggered_campaigns List[Campaign] The campaigns that were triggered as a result of processing the event. [optional]
effects List[Effect] The effects generated by the rules in your running campaigns. See API effects.
rule_failure_reasons List[RuleFailureReason] The reasons why certain rules were not triggered during the event processing. [optional]
created_coupons List[Coupon] The coupons that were created during the event processing.
created_referrals List[Referral] The referrals that were created during the event processing.
awarded_giveaways List[Giveaway] The giveaways that were awarded during the event processing. [optional]
advanced_event EventV3 The advanced event that was processed. [optional]

Example

from talon_one.models.integration_event_v3_response import IntegrationEventV3Response

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

# convert the object into a dict
integration_event_v3_response_dict = integration_event_v3_response_instance.to_dict()
# create an instance of IntegrationEventV3Response from a dict
integration_event_v3_response_from_dict = IntegrationEventV3Response.from_dict(integration_event_v3_response_dict)

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