new module:model/BillingInvoice()
- Source:
Constructs a new BillingInvoice
.
Contains information about a billing invoice.
Members
(inner) amount :String
- Source:
Reserved: TBD
Type:
- String
(inner) balance :String
- Source:
Reserved: TBD
Type:
- String
(inner) dueDate :String
- Source:
Reserved: TBD
Type:
- String
(inner) invoiceId :String
- Source:
Reserved: TBD
Type:
- String
(inner) invoiceItems :Array.<module:model/BillingInvoiceItem>
- Source:
Reserved: TBD
Type:
- Array.<module:model/BillingInvoiceItem>
(inner) invoiceNumber :String
- Source:
Reserved: TBD
Type:
- String
(inner) invoiceUri :String
- Source:
Contains a URI for an endpoint that you can use to retrieve invoice information.
Type:
- String
(inner) nonTaxableAmount :String
- Source:
Type:
- String
(inner) pdfAvailable :String
- Source:
Type:
- String
(inner) taxableAmount :String
- Source:
Type:
- String
Methods
(static) constructFromObject(data, obj) → {module:model/BillingInvoice}
- Source:
Constructs a BillingInvoice
from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data
to obj
if supplied or a new instance if not.
Parameters:
Name | Type | Description |
---|---|---|
data |
Object | The plain JavaScript object bearing properties of interest. |
obj |
module:model/BillingInvoice | Optional instance to populate. |
Returns:
The populated BillingInvoice
instance.