/** * 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 Payment object represents general payments made towards a specific transaction. */ export declare class Payment { 'id'?: string; 'remoteId'?: string; /** * The payment\'s transaction date. */ 'transactionDate'?: Date; /** * The supplier, or customer involved in the payment. */ 'contact'?: string; /** * The supplier’s or customer’s account in which the payment is made. */ 'account'?: string; 'currency'?: string; /** * The payment\'s exchange rate. Assuming string due to the example provided, but could be float or double. */ 'exchangeRate'?: string; /** * The company the payment belongs to. */ 'company'?: string; /** * The total amount of money being paid to the supplier, or customer, after taxes. Might want to use double or a more precise type */ 'totalAmount'?: number; 'trackingCategories'?: Array; 'remoteUpdatedAt'?: Date; 'remoteWasDeleted'?: boolean; /** * The accounting period that the Payment was generated in. */ 'accountingPeriod'?: string; 'modifiedAt'?: Date; 'mergeRecordId'?: string; '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; }[]; }