You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The list of actions that have been triggered in the loyalty program.
current_points
float
The current points balance.
Example
fromtalon_one.models.card_added_deducted_points_balances_notificationimportCardAddedDeductedPointsBalancesNotification# TODO update the JSON string belowjson="{}"# create an instance of CardAddedDeductedPointsBalancesNotification from a JSON stringcard_added_deducted_points_balances_notification_instance=CardAddedDeductedPointsBalancesNotification.from_json(json)
# print the JSON string representation of the objectprint(CardAddedDeductedPointsBalancesNotification.to_json())
# convert the object into a dictcard_added_deducted_points_balances_notification_dict=card_added_deducted_points_balances_notification_instance.to_dict()
# create an instance of CardAddedDeductedPointsBalancesNotification from a dictcard_added_deducted_points_balances_notification_from_dict=CardAddedDeductedPointsBalancesNotification.from_dict(card_added_deducted_points_balances_notification_dict)