Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.36 KB

File metadata and controls

31 lines (22 loc) · 1.36 KB

CreateEInvoiceRequest

Properties

NameTypeDescriptionNotes
dataobjectJSON payload that represents the Peppol BIS Billing 3.0 UBL Invoice (https://docs.peppol.eu/poacc/billing/3.0/) Use the Get schema endpoint to see the detailed payload structure.
typestrFormatting type.[optional] [default to 'UBL']
outputstrResponse format. When the "file" option is used the API returns the file inline.[optional] [default to 'base64']

Example

frompdf_generator_api_client.models.create_e_invoice_requestimportCreateEInvoiceRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateEInvoiceRequest from a JSON stringcreate_e_invoice_request_instance=CreateEInvoiceRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateEInvoiceRequest.to_json())
# convert the object into a dictcreate_e_invoice_request_dict=create_e_invoice_request_instance.to_dict()
# create an instance of CreateEInvoiceRequest from a dictcreate_e_invoice_request_from_dict=CreateEInvoiceRequest.from_dict(create_e_invoice_request_dict)

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