/* 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. */ /** * Represents the request payload for creating a transaction of type FEE_APPLIED. */ export interface FeeAppliedDepositTransactionInput { /** * The value of the fee applied on the account */ amount?: number; /** * The external id of the current transaction, customizable, unique */ externalId?: string; /** * Extra notes about the current transaction */ notes?: string; /** * The encodedKey of the predefined fee that defines the current fee */ predefinedFeeKey?: string; }