The type of the transaction.
| Name | Type | Description | Notes |
|---|
from clientapi_barion.models.detailed_payment_transaction_transaction_type import DetailedPaymentTransactionTransactionType
# TODO update the JSON string below
json = "{}"
# create an instance of DetailedPaymentTransactionTransactionType from a JSON string
detailed_payment_transaction_transaction_type_instance = DetailedPaymentTransactionTransactionType.from_json(json)
# print the JSON string representation of the object
print(DetailedPaymentTransactionTransactionType.to_json())
# convert the object into a dict
detailed_payment_transaction_transaction_type_dict = detailed_payment_transaction_transaction_type_instance.to_dict()
# create an instance of DetailedPaymentTransactionTransactionType from a dict
detailed_payment_transaction_transaction_type_from_dict = DetailedPaymentTransactionTransactionType.from_dict(detailed_payment_transaction_transaction_type_dict)