/** * 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 CashFlowStatement object shows operating activities, investing activities, and financing activities over a period of time (month, quarter, or year). */ export declare class CashFlowStatement { 'id'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; /** * The cash flow statement\'s name. */ 'name'?: string; 'currency'?: string; /** * The company the cash flow statement belongs to. */ 'company'?: string; /** * The cash flow statement\'s start period. Consider using google.protobuf.Timestamp */ 'startPeriod'?: Date; /** * The cash flow statement\'s end period. Consider using google.protobuf.Timestamp */ 'endPeriod'?: Date; /** * Cash and cash equivalents at the beginning of the cash flow statement\'s period. */ 'cashAtBeginningOfPeriod'?: number; /** * Cash and cash equivalents at the beginning of the cash flow statement\'s period. */ 'cashAtEndOfPeriod'?: number; 'operatingActivities'?: Array; 'investingActivities'?: Array; 'financingActivities'?: Array; /** * The time that cash flow statement was generated by the accounting system. Consider using google.protobuf.Timestamp */ 'remoteGeneratedAt'?: Date; /** * Indicates whether or not this object has been deleted by third party webhooks. */ 'remoteWasDeleted'?: boolean; /** * Consider using google.protobuf.Timestamp */ '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; }[]; }