| 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'] |
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)