Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

File metadata and controls

29 lines (20 loc) · 1.24 KB

InternalTransactionCodesListResponse

Properties

Name Type Description Notes
content List[InternalTransactionCodeResponse] [optional]

Example

from cloudbeds_accounting.models.internal_transaction_codes_list_response import InternalTransactionCodesListResponse

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

# convert the object into a dict
internal_transaction_codes_list_response_dict = internal_transaction_codes_list_response_instance.to_dict()
# create an instance of InternalTransactionCodesListResponse from a dict
internal_transaction_codes_list_response_from_dict = InternalTransactionCodesListResponse.from_dict(internal_transaction_codes_list_response_dict)

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