/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { InvoiceLineItem } from './invoiceLineItem'; /** * The Invoice object represents an itemized record of goods and/or services sold to a customer. */ export declare class Invoice { 'id'?: string; /** * Whether the invoice is an accounts receivable or accounts payable If type is accounts_payable, the invoice is a bill. If type is accounts_receivable, it is an invoice. Possible values include: ACCOUNTS_RECEIVABLE, ACCOUNTS_PAYABLE. */ 'type'?: string; /** * The invoice\'s contact. */ 'contact'?: string; /** * The invoice\'s number. */ 'number'?: string; /** * The invoice\'s issue date. */ 'issueDate'?: Date; /** * The invoice\'s due date. */ 'dueDate'?: Date; /** * The invoice\'s paid date. */ 'paidOnDate'?: Date; /** * The invoice\'s private note. */ 'memo'?: string; /** * The company the invoice belongs to. */ 'company'?: string; 'currency'?: string; /** * The invoice\'s exchange rate. */ 'exchangeRate'?: string; /** * The total discounts applied to the total cost. */ 'totalDiscount'?: number; /** * The total amount being paid before taxes. */ 'subTotal'?: number; 'status'?: string; /** * The total amount being paid in taxes. */ 'totalTaxAmount'?: number; /** * The invoice\'s total amount. */ 'totalAmount'?: number; /** * The invoice\'s remaining balance. */ 'balance'?: number; /** * When the third party\'s invoice entry was updated. */ 'remoteUpdatedAt'?: Date; 'trackingCategories'?: Array; /** * Array of Payment object IDs. */ 'payments'?: Array; 'lineItems'?: Array; 'remoteWasDeleted'?: boolean; /** * The accounting period that the Invoice was generated in. */ 'accountingPeriod'?: string; 'purchaseOrders'?: Array; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; 'modifiedAt'?: Date; 'mergeRecordId'?: string; 'createdAt'?: Date; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }