Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

SendEInvoiceRequestOptions.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

SendEInvoiceRequestOptions

Properties

Name Type Description Notes
dry_run bool If set to true the e-invoice will not be sent to the SDI. [optional]

Example

from fattureincloud_python_sdk.models.send_e_invoice_request_options import SendEInvoiceRequestOptions

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

# convert the object into a dict
send_e_invoice_request_options_dict = send_e_invoice_request_options_instance.to_dict()
# create an instance of SendEInvoiceRequestOptions from a dict
send_e_invoice_request_options_from_dict = SendEInvoiceRequestOptions.from_dict(send_e_invoice_request_options_dict)

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