/* tslint:disable */ /* eslint-disable */ /** * deposits * 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 block fund amount that can be later seized on the account */ export interface BlockFund { /** * The key of the account which block fund belongs to */ accountKey?: string; /** * The amount to be blocked */ amount: number; /** * The date at which the block fund was created */ creationDate?: string; /** * The external reference ID to be used to reference the block fund in subsequent requests */ externalReferenceId: string; /** * The date at which the block fund was created */ lastModifiedDate?: string; /** * Notes about this block fund */ notes?: string; /** * The amount that has been seized */ seizedAmount?: number; /** * The state of the block fund */ state?: BlockFundStateEnum; } export const BlockFundStateEnum = { Pending: 'PENDING', Seized: 'SEIZED', Removed: 'REMOVED', PartiallySeized: 'PARTIALLY_SEIZED', } as const; export type BlockFundStateEnum = (typeof BlockFundStateEnum)[keyof typeof BlockFundStateEnum];