/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { LemonWayCommission } from './LemonWayCommission'; import type { PSP } from './PSP'; /** * * @export * @interface TransactionOut */ export interface TransactionOut { /** * Debited account * @type {string} * @memberof TransactionOut */ senderAccountId?: string; /** * Debited amount * Amounts arerepresented in cents (Euros) * @type {number} * @memberof TransactionOut */ debitAmount?: number; /** * IBAN ID * @type {number} * @memberof TransactionOut */ ibanId?: number; /** * * @type {string} * @memberof TransactionOut */ maskedLabel?: string; /** * * @type {string} * @memberof TransactionOut */ bankStatus?: string; /** * * @type {PSP} * @memberof TransactionOut */ pSP?: PSP; /** * Money-In - ID responsible for the chargeback * @type {number} * @memberof TransactionOut */ originId?: number; /** * Transaction ID * @type {number} * @memberof TransactionOut */ id?: number; /** * Payment Method * 0 Card * 1 Bank transfert (Money-In) * 3 Bank transfert (Money-Out) * 4 P2P * 13 IDEAL * 14 DirectDebit * 15 CHEQUE * 16 Neosurf * 17 SoFort * 18 PFS Physical Card * 19 Multibanco * 20 Payshop * 21 MB WAY * 22 Polish Instant Transfer * 23 PAGARE * 24 MobilePay * 25 PayTrail * 26 WeChat (via PayTend) * 27 P24 * 28 MoneyIn by TPE * 29 Trustly * @type {number} * @memberof TransactionOut */ method?: number; /** * Payment Method Details * 0 Standard * 1 Pay By Bank
0 = STANDARD.
1 = PAY_BY_BANK.
* @type {number} * @memberof TransactionOut */ methodDetails?: TransactionOutMethodDetailsEnum; /** * Transaction initialization date, UTC Unix timestamp * @type {number} * @memberof TransactionOut */ date?: number; /** * Your fee * Amounts are given as integer numbers in cents * @type {number} * @memberof TransactionOut */ commissionAmount?: number; /** * Comment * @type {string} * @memberof TransactionOut */ comment?: string; /** * Money-In and Money-Out * * P2P * * @type {number} * @memberof TransactionOut */ status?: number; /** * Transaction execution date * @type {number} * @memberof TransactionOut */ executionDate?: number; /** * * @type {LemonWayCommission} * @memberof TransactionOut */ lemonWayCommission?: LemonWayCommission; /** * Unique ID generated by your server * @type {string} * @memberof TransactionOut */ reference?: string; } /** * @export */ export declare const TransactionOutMethodDetailsEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export declare type TransactionOutMethodDetailsEnum = typeof TransactionOutMethodDetailsEnum[keyof typeof TransactionOutMethodDetailsEnum]; /** * Check if a given object implements the TransactionOut interface. */ export declare function instanceOfTransactionOut(value: object): boolean; export declare function TransactionOutFromJSON(json: any): TransactionOut; export declare function TransactionOutFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionOut; export declare function TransactionOutToJSON(value?: TransactionOut | null): any;