/** * 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 { Any } from './any'; import { FinancialUserProfileType } from './financialUserProfileType'; export declare class Transaction { 'accountId'?: string; 'amount'?: number; 'isoCurrencyCode'?: string; 'unofficialCurrencyCode'?: string; 'categoryId'?: string; 'checkNumber'?: string; 'currentDate'?: string; 'currentDatetime'?: string; 'authorizedDate'?: string; 'authorizedDatetime'?: string; 'name'?: string; 'merchantName'?: string; 'paymentChannel'?: string; 'pending'?: boolean; 'pendingTransactionId'?: string; 'accountOwner'?: string; 'transactionId'?: string; 'transactionCode'?: string; 'id'?: string; 'userId'?: string; 'linkId'?: string; 'sign'?: number; 'personalFinanceCategoryPrimary'?: string; 'personalFinanceCategoryDetailed'?: string; 'locationAddress'?: string; 'locationCity'?: string; 'locationRegion'?: string; 'locationPostalCode'?: string; 'locationCountry'?: string; 'locationLat'?: number; 'locationLon'?: number; 'locationStoreNumber'?: string; 'paymentMetaByOrderOf'?: string; 'paymentMetaPayee'?: string; 'paymentMetaPayer'?: string; 'paymentMetaPaymentMethod'?: string; 'paymentMetaPaymentProcessor'?: string; 'paymentMetaPpdId'?: string; 'paymentMetaReason'?: string; 'paymentMetaReferenceNumber'?: string; 'time'?: Date; 'additionalProperties'?: Any; 'categories'?: Array; 'profileType'?: FinancialUserProfileType; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace Transaction { }