UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

36 lines (35 loc) 653 B
/** * Ledger Account Blockage */ export interface Blockage { /** * ID of the blockage. * @type {string} * @memberof Blockage */ id: string; /** * ID of the account this blockage is for. * @type {string} * @memberof Blockage */ accountId: string; /** * Amount blocked on account. * @type {string} * @memberof Blockage */ amount: string; /** * Type of blockage. * @type {string} * @memberof Blockage */ type: string; /** * Description of blockage. * @type {string} * @memberof Blockage */ description?: string; }