/* tslint:disable */ /* eslint-disable */ /** * deposits/transactions * 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. */ // May contain unused imports in some cases // @ts-ignore import type { PaymentDetails } from './payment-details'; // May contain unused imports in some cases // @ts-ignore import type { TransferDetailsInput } from './transfer-details-input'; /** * Represents the input for a transfer deposit transaction. */ export interface TransferDepositTransactionInput { /** * The amount to transfer from account */ amount: number; /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The external id of the transfer transaction, customizable, unique */ externalId?: string; /** * Extra notes about this deposit transaction */ notes?: string; paymentDetails?: PaymentDetails; /** * The payment order id of the transfer transaction, customizable */ paymentOrderId?: string; transferDetails: TransferDetailsInput; /** * The entry date of the transfer. If not specified it is considered the current date (as Organization Time) */ valueDate?: string; }