Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.25 KB

File metadata and controls

43 lines (34 loc) · 2.25 KB

IntegrationHubEventPayloadLoyaltyProfileBasedNotification

Properties

Name Type Description Notes
profile_integration_id str
loyalty_program_id int
subledger_id str
source_of_event str
employee_name str [optional]
user_id int [optional]
current_points float
actions List[IntegrationHubEventPayloadLoyaltyProfileBasedPointsChangedNotificationAction] [optional]
published_at datetime Timestamp when the event was published.
current_tier str [optional]
old_tier str [optional]
tier_expiration_date datetime [optional]
timestamp_of_tier_change datetime [optional]
points_required_to_the_next_tier float [optional]
next_tier str [optional]

Example

from talon_one.models.integration_hub_event_payload_loyalty_profile_based_notification import IntegrationHubEventPayloadLoyaltyProfileBasedNotification

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

# convert the object into a dict
integration_hub_event_payload_loyalty_profile_based_notification_dict = integration_hub_event_payload_loyalty_profile_based_notification_instance.to_dict()
# create an instance of IntegrationHubEventPayloadLoyaltyProfileBasedNotification from a dict
integration_hub_event_payload_loyalty_profile_based_notification_from_dict = IntegrationHubEventPayloadLoyaltyProfileBasedNotification.from_dict(integration_hub_event_payload_loyalty_profile_based_notification_dict)

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