Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

File metadata and controls

29 lines (20 loc) · 1.22 KB

DetailedPaymentTransactionTransactionType

The type of the transaction.

Properties

Name Type Description Notes

Example

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)

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