Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.12 KB

File metadata and controls

40 lines (31 loc) · 2.12 KB

IntegrationHubEventPayloadLoyaltyProfileBasedTierUpgradeNotification

Properties

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

Example

from talon_one.models.integration_hub_event_payload_loyalty_profile_based_tier_upgrade_notification import IntegrationHubEventPayloadLoyaltyProfileBasedTierUpgradeNotification

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

# convert the object into a dict
integration_hub_event_payload_loyalty_profile_based_tier_upgrade_notification_dict = integration_hub_event_payload_loyalty_profile_based_tier_upgrade_notification_instance.to_dict()
# create an instance of IntegrationHubEventPayloadLoyaltyProfileBasedTierUpgradeNotification from a dict
integration_hub_event_payload_loyalty_profile_based_tier_upgrade_notification_from_dict = IntegrationHubEventPayloadLoyaltyProfileBasedTierUpgradeNotification.from_dict(integration_hub_event_payload_loyalty_profile_based_tier_upgrade_notification_dict)

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