/* 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 information for seizing a block amount on a deposit account. */ export interface SeizeBlockAmount { /** * The amount of the block fund */ amount?: number; /** * The id of the block fund */ blockId: string; /** * The external id of the current transaction, customizable, unique */ externalId?: string; /** * Extra notes about the current transaction */ notes?: string; /** * The id of the channel through which the transaction is done. */ transactionChannelId: string; }