Array of invoice information or a single invoice object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | The invoice ID | [optional] |
| userid | int | The client ID linked to the invoice | [optional] |
| firstname | str | [optional] | |
| lastname | str | [optional] | |
| companyname | str | [optional] | |
| invoicenum | str | [optional] | |
| var_date | str | The invoice date (YYYY-MM-DD, may be 0000-00-00) | [optional] |
| duedate | str | The invoice due date (YYYY-MM-DD, may be 0000-00-00) | [optional] |
| datepaid | str | [optional] | |
| last_capture_attempt | str | [optional] | |
| date_refunded | str | [optional] | |
| date_cancelled | str | [optional] | |
| subtotal | str | [optional] | |
| credit | str | [optional] | |
| tax | str | [optional] | |
| tax2 | str | [optional] | |
| total | str | [optional] | |
| taxrate | str | [optional] | |
| taxrate2 | str | [optional] | |
| status | str | [optional] | |
| paymentmethod | str | [optional] | |
| notes | str | [optional] | |
| created_at | str | [optional] | |
| updated_at | str | [optional] | |
| currencycode | str | [optional] | |
| currencyprefix | str | [optional] | |
| currencysuffix | str | [optional] |
from whmcs_client.models.invoice_collection_invoice import InvoiceCollectionInvoice
# TODO update the JSON string below
json = "{}"
# create an instance of InvoiceCollectionInvoice from a JSON string
invoice_collection_invoice_instance = InvoiceCollectionInvoice.from_json(json)
# print the JSON string representation of the object
print(InvoiceCollectionInvoice.to_json())
# convert the object into a dict
invoice_collection_invoice_dict = invoice_collection_invoice_instance.to_dict()
# create an instance of InvoiceCollectionInvoice from a dict
invoice_collection_invoice_from_dict = InvoiceCollectionInvoice.from_dict(invoice_collection_invoice_dict)