Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

GetInvoices Model

hitmanpt edited this page Feb 9, 2017 · 1 revision

Model Overview

Namespace: WHMCS_API.GetInvoices

Classes:


GetClientsProducts Class

  • Result (type: string): The result of the operation: success or error
  • TotalResults (type: string): The total number of results available
  • StartNumber (type: int): The starting number for the returned results
  • NumberReturned (type: int): The total number of results returned
  • Invoices (type: Invoices): The invoices returned matching the criteria passed

Invoices Class

  • Invoice (type: IList<Invoice>)

Invoice Class

  • ID (type: string)
  • UserID (type: string)
  • Firstname (type: string)
  • Lastname (type: string)
  • CompanyName (type: string)
  • InvoiceNumber (type: string)
  • Date (type: string)
  • DueDate (type: string)
  • DatePaid (type: string)
  • SubTotal (type: string)
  • Credit (type: string)
  • Tax (type: string)
  • Tax2 (type: string)
  • Total (type: string)
  • TaxRate (type: string)
  • TaxRate2 (type: string)
  • Status (type: string)
  • PaymentMethod (type: string)
  • Notes (type: string)
  • CurrencyCode (type: string)
  • CurrencyPrefix (type: string)
  • CurrencySuffix (type: string)