Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

CreateReceiptRequest.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

CreateReceiptRequest

Properties

Name Type Description Notes
data Receipt [optional]
autocomplete_number bool If true, the number is autocompleted progressively. [optional]

Example

from fattureincloud_python_sdk.models.create_receipt_request import CreateReceiptRequest

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

# convert the object into a dict
create_receipt_request_dict = create_receipt_request_instance.to_dict()
# create an instance of CreateReceiptRequest from a dict
create_receipt_request_form_dict = create_receipt_request.from_dict(create_receipt_request_dict)

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