/** * 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 { ReportItem } from './reportItem'; /** * The IncomeStatement object is used to represent a company’s income, the cost of sales, operating expenses, and other non-operating expenses. The object also includes other important values like gross profit, gross operating profit, and net income. This represents a period of time (month, quarter, or year). */ export declare class IncomeStatement { 'id'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; /** * The income statement\'s name. */ 'name'?: string; /** * The income statement\'s currency. */ 'currency'?: string; /** * The company the income statement belongs to. */ 'company'?: string; /** * The income statement\'s start period. */ 'startPeriod'?: Date; /** * The income statement\'s end period. */ 'endPeriod'?: Date; 'income'?: Array; 'costOfSales'?: Array; /** * The revenue minus the cost of sale. */ 'grossProfit'?: number; 'operatingExpenses'?: Array; /** * The revenue minus the operating expenses. */ 'netOperatingIncome'?: number; 'nonOperatingExpenses'?: Array; /** * The gross profit minus the total expenses. */ 'netIncome'?: number; /** * Indicates whether or not this object has been deleted by third party webhooks. */ 'remoteWasDeleted'?: boolean; '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; }[]; }