Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

TransactionTypeIdentifier

Properties

Name Type Description Notes
origin_id str Origin ID of the transaction type
external_relation_kind ExternalRelationKind

Example

from cloudbeds_accounting.models.transaction_type_identifier import TransactionTypeIdentifier

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

# convert the object into a dict
transaction_type_identifier_dict = transaction_type_identifier_instance.to_dict()
# create an instance of TransactionTypeIdentifier from a dict
transaction_type_identifier_from_dict = TransactionTypeIdentifier.from_dict(transaction_type_identifier_dict)

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