Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.95 KB

File metadata and controls

34 lines (25 loc) · 1.95 KB

IntegrationHubEventPayloadLoyaltyProfileBasedPointsChangedNotificationAction

Properties

Name Type Description Notes
amount float
reason str [optional]
operation str
start_date datetime [optional]
expiry_date datetime [optional]
transaction_uuid UUID The identifier of the transaction in the loyalty ledger.

Example

from talon_one.models.integration_hub_event_payload_loyalty_profile_based_points_changed_notification_action import IntegrationHubEventPayloadLoyaltyProfileBasedPointsChangedNotificationAction

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

# convert the object into a dict
integration_hub_event_payload_loyalty_profile_based_points_changed_notification_action_dict = integration_hub_event_payload_loyalty_profile_based_points_changed_notification_action_instance.to_dict()
# create an instance of IntegrationHubEventPayloadLoyaltyProfileBasedPointsChangedNotificationAction from a dict
integration_hub_event_payload_loyalty_profile_based_points_changed_notification_action_from_dict = IntegrationHubEventPayloadLoyaltyProfileBasedPointsChangedNotificationAction.from_dict(integration_hub_event_payload_loyalty_profile_based_points_changed_notification_action_dict)

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