| Name |
Type |
Description |
Notes |
| customer_profile_id |
str |
The integration ID of the customer profile whose tier was upgraded. |
|
| loyalty_program_id |
int |
The ID of the loyalty program. |
|
| subledger_id |
str |
The ID of the subledger, when applicable. If this field is empty, the main ledger is used. |
[default to ''] |
| current_tier |
str |
The name of the customer's current tier. |
|
| current_points |
float |
The number of points the customer had at the time of tier upgrade. |
|
| old_tier |
str |
The name of the customer's previous tier. |
[optional] |
| points_required_to_the_next_tier |
float |
The number of points needed for a customer to reach the next tier. |
[optional] |
| next_tier |
str |
The name of the customer's next tier. |
[optional] |
| tier_expiration_date |
datetime |
The exact date and time the tier expires. |
|
| timestamp_of_tier_change |
datetime |
The exact date and time the tier was changed. |
|
from talon_one.models.tier_upgrade_data import TierUpgradeData
# TODO update the JSON string below
json = "{}"
# create an instance of TierUpgradeData from a JSON string
tier_upgrade_data_instance = TierUpgradeData.from_json(json)
# print the JSON string representation of the object
print(TierUpgradeData.to_json())
# convert the object into a dict
tier_upgrade_data_dict = tier_upgrade_data_instance.to_dict()
# create an instance of TierUpgradeData from a dict
tier_upgrade_data_from_dict = TierUpgradeData.from_dict(tier_upgrade_data_dict)
[Back to Model list] [Back to API list] [Back to README]