/** * 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 { AccountingAttachment } from './accountingAttachment'; import { BalanceSheet } from './balanceSheet'; import { BusinessChartOfAccount } from './businessChartOfAccount'; import { BusinessTransaction } from './businessTransaction'; import { CashFlowStatement } from './cashFlowStatement'; import { CompanyInfo } from './companyInfo'; import { Contacts } from './contacts'; import { CreditNote } from './creditNote'; import { Expense } from './expense'; import { IncomeStatement } from './incomeStatement'; import { Invoice } from './invoice'; import { Item } from './item'; import { JournalEntry } from './journalEntry'; import { Payment } from './payment'; import { PurchaseOrder } from './purchaseOrder'; import { TaxRate } from './taxRate'; import { VendorCredit } from './vendorCredit'; export declare class LinkedAccountingAccount { 'id'?: string; 'attachments'?: Array; /** * The CompanyInfo object is used to represent a company\'s information. */ 'companyInfo'?: Array; 'purchaseOrders'?: Array; 'balanceSheets'?: Array; 'cashFlowStatements'?: Array; 'incomeStatements'?: Array; 'chartOfAccounts'?: Array; 'items'?: Array; 'taxRates'?: Array; /** * The Contact object refers to either a supplier or a customer. */ 'contacts'?: Array; 'invoices'?: Array; 'payments'?: Array; 'expenses'?: Array; 'journalEntries'?: Array; 'transactions'?: Array; 'vendorCredits'?: Array; 'creditNotes'?: Array; '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; }[]; }