/** * 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 ExpenseLine object is used to represent an expense\'s line items. */ export declare class ExpenseLine { 'id'?: string; /** * The line\'s net amount. */ 'netAmount'?: number; 'trackingCategory'?: string; 'trackingCategories'?: Array; /** * The company the line belongs to. */ 'company'?: string; /** * The line\'s item. This seems to be an ID */ 'item'?: string; /** * The expense\'s payment account. */ 'account'?: string; /** * The expense\'s contact. Optional based on provided JSON */ 'contact'?: string; /** * The description of the item that was purchased by the company. */ 'description'?: string; /** * The expense line item\'s exchange rate. Consider using double or float if this represents a number */ 'exchangeRate'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; 'currency'?: string; /** * Consider using google.protobuf.Timestamp */ 'modifiedAt'?: Date; '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; }[]; }