/** * 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 BalanceSheet object shows a company’s assets, liabilities, and equity. Assets should be equal to liability and equity combined. This shows the company’s financial health at a specific point in time. */ export declare class BalanceSheet { 'id'?: string; /** * The third-party API ID of the matching object. */ 'remoteId'?: string; /** * The balance sheet\'s name. */ 'name'?: string; 'currency'?: string; 'company'?: string; /** * The balance sheet\'s date. The balance sheet data will reflect the company\'s financial position this point in time. Consider using google.protobuf.Timestamp */ 'date'?: Date; /** * The balance sheet\'s net assets. */ 'netAssets'?: number; /** * The balance sheet\'s total assets. */ 'assets'?: Array; /** * The balance sheet\'s total liabilities. */ 'liabilities'?: Array; /** * The balance sheet\'s total equity. */ 'equity'?: Array; /** * The time that balance sheet 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; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }