| Name |
Type |
Description |
Notes |
| tier_number |
str |
The tier number as defined by the merchant |
|
| tier_name |
str |
The tier name as defined by the merchant |
|
| tier_discount |
float |
The provided discount as percentage |
|
| tier_design_id |
str |
|
|
| points_design_id |
str |
|
|
| id |
str |
The UUID of this record |
|
| merchant_id |
str |
|
|
| tier_id |
str |
The id of the membership tier - autopopulated by the service |
|
| created_at |
datetime |
The timestamp of when this resource was created |
|
| is_active |
bool |
Denotes if this resource is active |
|
from wallet.models.ms_membership_tier_history import MSMembershipTierHistory
# TODO update the JSON string below
json = "{}"
# create an instance of MSMembershipTierHistory from a JSON string
ms_membership_tier_history_instance = MSMembershipTierHistory.from_json(json)
# print the JSON string representation of the object
print MSMembershipTierHistory.to_json()
# convert the object into a dict
ms_membership_tier_history_dict = ms_membership_tier_history_instance.to_dict()
# create an instance of MSMembershipTierHistory from a dict
ms_membership_tier_history_form_dict = ms_membership_tier_history.from_dict(ms_membership_tier_history_dict)
[Back to Model list] [Back to API list] [Back to README]