Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.67 KB

File metadata and controls

40 lines (31 loc) · 2.67 KB

CardAddedDeductedPointsBalancesNotification

Properties

Name Type Description Notes
card_identifier str Loyalty card identification number.
employee_name str The name of the employee who added or deducted points.
loyalty_program_id int The ID of the loyalty program.
notification_type str The type of notification.
profile_integration_ids List[str] The integration ID of the customer profile to whom points were added or deducted.
session_integration_id str The integration ID of the session through which the points were earned or lost.
subledger_id str The ID of the subledger within the loyalty program where these points were added or deducted.
type_of_change str The notification source, that is, it indicates whether the points were added or deducted via one of the following routes: - The Campaign Manager - Management API - Rule Engine
user_id int The ID of the employee who added or deducted points.
users_per_card_limit int The max amount of user profiles with whom a card can be shared. This can be set to `0` for no limit.
actions List[AddedDeductedPointsBalancesAction] The list of actions that have been triggered in the loyalty program.
current_points float The current points balance.

Example

from talon_one.models.card_added_deducted_points_balances_notification import CardAddedDeductedPointsBalancesNotification

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

# convert the object into a dict
card_added_deducted_points_balances_notification_dict = card_added_deducted_points_balances_notification_instance.to_dict()
# create an instance of CardAddedDeductedPointsBalancesNotification from a dict
card_added_deducted_points_balances_notification_from_dict = CardAddedDeductedPointsBalancesNotification.from_dict(card_added_deducted_points_balances_notification_dict)

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