Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

MSMemberRedemptionTransactionType

The type of the transaction - either redemption or refund

Properties

Name Type Description Notes

Example

from wallet.models.ms_member_redemption_transaction_type import MSMemberRedemptionTransactionType

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

# convert the object into a dict
ms_member_redemption_transaction_type_dict = ms_member_redemption_transaction_type_instance.to_dict()
# create an instance of MSMemberRedemptionTransactionType from a dict
ms_member_redemption_transaction_type_form_dict = ms_member_redemption_transaction_type.from_dict(ms_member_redemption_transaction_type_dict)

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