export interface WalletLimit { /** * The ID of the account within the wallet. UUID. */ account_id: string; /** * The limit amount in the specified currency. */ amount: string; /** * Three-letter ISO 4217 code for the currency of the amount. */ currency: string; /** * Type of limit. One of the following: * - **min_balance_threshold** - The amount that triggers an email notification to increase the amount in the reserve balance. * - **max_balance_limit** - The maximum balance that this account can hold. */ type: 'min_balance_threshold' | 'max_balance_limit'; /** * Timestamp for the request, in [*Unix time*](ref:glossary). */ updated_at: string; /** * Rapyd Wallet ID defined by the customer or end user. Must be unique. */ wallet: string; } //# sourceMappingURL=WalletLimit.d.ts.map