The id of the membership tier - autopopulated by the service
| Name | Type | Description | Notes |
|---|
from wallet.models.wt_membership_tier_id import WTMembershipTierId
# TODO update the JSON string below
json = "{}"
# create an instance of WTMembershipTierId from a JSON string
wt_membership_tier_id_instance = WTMembershipTierId.from_json(json)
# print the JSON string representation of the object
print WTMembershipTierId.to_json()
# convert the object into a dict
wt_membership_tier_id_dict = wt_membership_tier_id_instance.to_dict()
# create an instance of WTMembershipTierId from a dict
wt_membership_tier_id_form_dict = wt_membership_tier_id.from_dict(wt_membership_tier_id_dict)