/** * 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 { TransactionLineItem } from './transactionLineItem'; /** * * Credit Notes * Expenses * Invoices * Journal Entries * Payments * Purchase Orders * Vendor Credits */ export declare class BusinessTransaction { 'id'?: string; /** * The type of transaction, which can by any transaction object not already included in Merge’s common model. */ 'transactionType'?: string; /** * The transaction\'s number used for identifying purposes. */ 'number'?: string; /** * The date upon which the transaction occurred. */ 'transactionDate'?: Date; /** * The transaction\'s account. */ 'account'?: string; /** * The contact to whom the transaction relates to. */ 'contact'?: string; /** * The total amount being paid after taxes. Might be better as double. */ 'totalAmount'?: string; 'currency'?: string; /** * The transaction\'s exchange rate. Assuming string, but might be better as float or double. */ 'exchangeRate'?: string; /** * The company the transaction belongs to. */ 'company'?: string; 'trackingCategories'?: Array; 'lineItems'?: Array; /** * Indicates whether or not this object has been deleted in the third party platform. */ 'remoteWasDeleted'?: boolean; /** * The accounting period that the Transaction was generated in. */ 'accountingPeriod'?: string; 'mergeRecordId'?: string; 'remoteId'?: string; 'modifiedAt'?: Date; '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; }[]; }