Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.82 KB

File metadata and controls

39 lines (30 loc) · 1.82 KB

MSMembershipTierRedemption

Properties

Name Type Description Notes
member_id object A 10 character alphanumeric unique value that represents each member
transaction_id object The transaction ID at the POS
transaction_type MSMemberRedemptionTransactionType
amount object The amount that has been redeemed, in cents
register_id MSMemberRedemptionRegisterID [optional]
terminal_type object The type of the terminal
id object The UUID of this record
tier_id object A 10 character alphanumeric unique value that represents each membership tier
merchant_id str
created_at object The timestamp of when this resource was created
is_active object Denotes if this resource is active

Example

from wallet.models.ms_membership_tier_redemption import MSMembershipTierRedemption

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

# convert the object into a dict
ms_membership_tier_redemption_dict = ms_membership_tier_redemption_instance.to_dict()
# create an instance of MSMembershipTierRedemption from a dict
ms_membership_tier_redemption_form_dict = ms_membership_tier_redemption.from_dict(ms_membership_tier_redemption_dict)

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