/** * 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 TransactionLineItem object is used to represent a transaction\'s line items. */ export declare class TransactionLineItem { 'id'?: string; 'remoteId'?: string; /** * An internal note used by the business to clarify purpose of the transaction. */ 'memo'?: string; /** * The line item\'s unit price. */ 'unitPrice'?: string; /** * The line item\'s quantity. */ 'quantity'?: string; 'item'?: string; /** * The line item\'s account. */ 'account'?: string; /** * The line\'s associated tracking category. */ 'trackingCategory'?: string; 'trackingCategories'?: Array; /** * The line item\'s total. */ 'totalLineAmount'?: string; /** * The line item\'s tax rate. */ 'taxRate'?: string; 'currency'?: string; /** * The line item\'s exchange rate. Assuming string, but might be better as float or double. */ 'exchangeRate'?: string; /** * The company the line belongs to. */ 'company'?: string; 'modifiedAt'?: Date; /** * Indicates whether or not this object has been deleted in the third party platform. */ 'remoteWasDeleted'?: boolean; '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; }[]; }