/* 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 { TransactionDetailsInput } from './transaction-details-input'; /** * Represents the request payload for creating a transaction of type DEPOSIT. */ export interface DepositTransactionInput { /** * The amount that was added to an account */ amount: number; /** * The date of Journal Entry (as Organization Time) */ bookingDate?: string; /** * The external id of the deposit transaction, customizable, unique */ externalId?: string; /** * The external id of an account authorization hold */ holdExternalReferenceId?: string; /** * Extra notes about this deposit transaction */ notes?: string; paymentDetails?: PaymentDetails; /** * The payment order id of the deposit transaction, customizable */ paymentOrderId?: string; /** * Flag indicating that a maximum balance validation should be skipped */ skipMaximumBalanceValidation?: boolean; transactionDetails?: TransactionDetailsInput; /** * The entry date of the deposit (as Organization Time) */ valueDate?: string; }