| Name | Type | Description | Notes |
|---|---|---|---|
| customer | Customer | ||
| items | List[InvoiceItem] | ||
| payment_method | str | 01 = Sin sistema financiero | [optional] [default to '01'] |
| notes | str | [optional] |
from ecuapi.models.create_invoice_request import CreateInvoiceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateInvoiceRequest from a JSON string
create_invoice_request_instance = CreateInvoiceRequest.from_json(json)
# print the JSON string representation of the object
print(CreateInvoiceRequest.to_json())
# convert the object into a dict
create_invoice_request_dict = create_invoice_request_instance.to_dict()
# create an instance of CreateInvoiceRequest from a dict
create_invoice_request_from_dict = CreateInvoiceRequest.from_dict(create_invoice_request_dict)