Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.05 KB

File metadata and controls

37 lines (28 loc) · 2.05 KB

IntegrationResponse

Contains entities that might be valuable in Talon.One integrations.

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]

Example

from talon_one.models.integration_response import IntegrationResponse

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

# convert the object into a dict
integration_response_dict = integration_response_instance.to_dict()
# create an instance of IntegrationResponse from a dict
integration_response_from_dict = IntegrationResponse.from_dict(integration_response_dict)

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