/** * 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 Account object is what companies use to track transactions. They can be both bank accounts or a general ledger account (also called a chart of accounts). Note: a company can have a multitude of these accounts */ export declare class BusinessChartOfAccount { 'id'?: string; 'mergeRecordId': string; 'remoteId'?: string; /** * The account\'s name. */ 'name'?: string; /** * The account\'s description. */ 'description'?: string; /** * The account\'s broadest grouping. Possible values include: ASSET, EQUITY, EXPENSE, LIABILITY, REVENUE. In cases where there is no clear mapping, the original value passed through will be returned. */ 'classification'?: string; /** * The account\'s type is a narrower and more specific grouping within the account\'s classification. */ 'type'?: string; /** * The account\'s status. Possible values include: ACTIVE, PENDING, INACTIVE. In cases where there is no clear mapping, the original value passed through will be returned. */ 'status'?: string; /** * The account\'s current balance. */ 'currentBalance'?: number; 'currency'?: string; /** * The account\'s number. */ 'accountNumber'?: string; /** * ID of the parent account. */ 'parentAccountId'?: string; /** * The company the account belongs to. */ 'company'?: string; 'modifiedAt'?: Date; /** * Indicates whether or not this object has been deleted by third party webhooks. */ '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; }[]; }