Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

FolioTransactionTypeResponse

Properties

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

Example

from cloudbeds_accounting.models.folio_transaction_type_response import FolioTransactionTypeResponse

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

# convert the object into a dict
folio_transaction_type_response_dict = folio_transaction_type_response_instance.to_dict()
# create an instance of FolioTransactionTypeResponse from a dict
folio_transaction_type_response_from_dict = FolioTransactionTypeResponse.from_dict(folio_transaction_type_response_dict)

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