The type of the transaction - either redemption or refund
| Name | Type | Description | Notes |
|---|
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)