Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.25 KB

File metadata and controls

36 lines (27 loc) · 1.25 KB

F24

Properties

Name Type Description Notes
id int F24 id [optional]
due_date date F24 due date [optional]
status F24Status [optional]
payment_account PaymentAccount [optional]
amount float F24 amount [optional]
attachment_url str [Temporary] [Read Only] F24 url of the attached file [optional] [readonly]
attachment_token str [Write Only] F24 attachment token returned by POST /taxes/attachment [optional]
description str F24 description [optional]

Example

from fattureincloud_python_sdk.models.f24 import F24

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

# convert the object into a dict
f24_dict = f24_instance.to_dict()
# create an instance of F24 from a dict
f24_from_dict = F24.from_dict(f24_dict)

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