Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

File metadata and controls

33 lines (24 loc) · 1.4 KB

AccountsReceivableLedgerPatchRequest

Properties

Name Type Description Notes
id int
name str [optional]
description str [optional]
profile_id int Linkage with Profile ID [optional]
status AccountsReceivableLedgerStatus [optional]

Example

from cloudbeds_accounting.models.accounts_receivable_ledger_patch_request import AccountsReceivableLedgerPatchRequest

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

# convert the object into a dict
accounts_receivable_ledger_patch_request_dict = accounts_receivable_ledger_patch_request_instance.to_dict()
# create an instance of AccountsReceivableLedgerPatchRequest from a dict
accounts_receivable_ledger_patch_request_from_dict = AccountsReceivableLedgerPatchRequest.from_dict(accounts_receivable_ledger_patch_request_dict)

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