| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[Invoice] | ||
| meta | Meta |
from ecuapi.models.invoice_list_response import InvoiceListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of InvoiceListResponse from a JSON string
invoice_list_response_instance = InvoiceListResponse.from_json(json)
# print the JSON string representation of the object
print(InvoiceListResponse.to_json())
# convert the object into a dict
invoice_list_response_dict = invoice_list_response_instance.to_dict()
# create an instance of InvoiceListResponse from a dict
invoice_list_response_from_dict = InvoiceListResponse.from_dict(invoice_list_response_dict)