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

Name Type Description Notes
data object JSON 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.
type str Formatting type. [optional] [default to 'UBL']
output str Response format. When the "file" option is used the API returns the file inline. [optional] [default to 'base64']

Example

from pdf_generator_api_client.models.create_e_invoice_request import CreateEInvoiceRequest

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

# convert the object into a dict
create_e_invoice_request_dict = create_e_invoice_request_instance.to_dict()
# create an instance of CreateEInvoiceRequest from a dict
create_e_invoice_request_from_dict = CreateEInvoiceRequest.from_dict(create_e_invoice_request_dict)

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