Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.07 KB

ModifyCashbookEntryRequest.md

File metadata and controls

30 lines (20 loc) · 1.07 KB

ModifyCashbookEntryRequest

Properties

Name Type Description Notes
data CashbookEntry [optional]

Example

from fattureincloud_python_sdk.models.modify_cashbook_entry_request import ModifyCashbookEntryRequest

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

# convert the object into a dict
modify_cashbook_entry_request_dict = modify_cashbook_entry_request_instance.to_dict()
# create an instance of ModifyCashbookEntryRequest from a dict
modify_cashbook_entry_request_from_dict = ModifyCashbookEntryRequest.from_dict(modify_cashbook_entry_request_dict)

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