/** * 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. */ /** * The Invoice object represents an itemized record of goods and/or services sold to a customer. */ export declare class InvoiceLineItem { 'id'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; /** * The line item\'s description. */ 'description'?: string; /** * The line item\'s unit price. */ 'unitPrice'?: number; /** * The line item\'s quantity. */ 'quantity'?: number; /** * The line item\'s total amount. */ 'totalAmount'?: number; 'currency'?: string; /** * The line item\'s exchange rate. */ 'exchangeRate'?: string; 'item'?: string; 'account'?: string; 'trackingCategory'?: string; 'trackingCategories'?: Array; /** * The company the line item belongs to. */ 'company'?: string; 'mergeRecordId'?: string; /** * Consider using google.protobuf.Timestamp */ 'modifiedAt'?: Date; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }