Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1002 Bytes

File metadata and controls

30 lines (21 loc) · 1002 Bytes

InvoiceListResponse

Properties

Name Type Description Notes
data List[Invoice]
meta Meta

Example

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)

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