Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.07 KB

File metadata and controls

30 lines (20 loc) · 1.07 KB

CreateCashbookEntryRequest

Properties

Name Type Description Notes
data CashbookEntry [optional]

Example

from fattureincloud_python_sdk.models.create_cashbook_entry_request import CreateCashbookEntryRequest

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

# convert the object into a dict
create_cashbook_entry_request_dict = create_cashbook_entry_request_instance.to_dict()
# create an instance of CreateCashbookEntryRequest from a dict
create_cashbook_entry_request_from_dict = CreateCashbookEntryRequest.from_dict(create_cashbook_entry_request_dict)

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