libs/billing-api-client/src/docs/Invoice.md
| Name | Type | Description | Notes |
|---|---|---|---|
| currency | string | [optional] [default to undefined] | |
| errorDetails | Array<InvoiceErrorDetail> | [optional] [default to undefined] | |
| fileUrl | string | [optional] [default to undefined] | |
| id | string | [optional] [default to undefined] | |
| issuingDate | string | [optional] [default to undefined] | |
| number | string | [optional] [default to undefined] | |
| paymentDueDate | string | [optional] [default to undefined] | |
| paymentOverdue | boolean | [optional] [default to undefined] | |
| paymentStatus | InvoicePaymentStatus | [optional] [default to undefined] | |
| sequentialId | number | [optional] [default to undefined] | |
| status | InvoiceStatus | [optional] [default to undefined] | |
| totalAmountCents | number | [optional] [default to undefined] | |
| totalDueAmountCents | number | [optional] [default to undefined] | |
| type | InvoiceType | [optional] [default to undefined] |
import { Invoice } from './api';
const instance: Invoice = {
currency,
errorDetails,
fileUrl,
id,
issuingDate,
number,
paymentDueDate,
paymentOverdue,
paymentStatus,
sequentialId,
status,
totalAmountCents,
totalDueAmountCents,
type,
};