/** * 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 PurchaseOrderLineItem object is used to represent a purchase order\'s line item. */ export declare class PurchaseOrderLineItem { 'id'?: string; 'remoteId'?: string; 'description'?: string; 'quantity'?: number; /** * Assuming string, but might be better as float or double. */ 'unitPrice'?: string; 'item'?: string; 'account'?: string; 'trackingCategory'?: string; 'trackingCategories'?: Array; 'taxAmount'?: string; 'totalLineAmount'?: string; 'currency'?: string; /** * Assuming string, but might be better as float or double. */ 'exchangeRate'?: string; 'company'?: string; 'modifiedAt'?: Date; 'createdAt'?: Date; 'remoteWasDeleted'?: boolean; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }