UNPKG

@bunq-community/bunq-js-client

Version:

[![NPM Version](https://img.shields.io/npm/v/@bunq-community/bunq-js-client.svg) ](https://github.com/@bunq-community/bunq-js-client) [![NPM Downloads](https://img.shields.io/npm/dt/@bunq-community/bunq-js-client.svg) ](https://www.npmjs.com/package/@bun

20 lines (19 loc) 642 B
import Amount from "./Amount"; import NotificationFilter from "./NotificationFilter"; export interface MonetaryAccountPutRequest { description?: string; daily_limit?: Amount; avatar_uuid?: string; reason_description?: string; notification_filters?: NotificationFilter[]; status?: "ACTIVE" | "CANCELLED" | "PENDING_REOPEN"; sub_status?: "REDEMPTION_VOLUNTARY"; reason?: "OTHER"; savings_goal?: Amount; setting?: { color?: string; default_avatar_status?: "AVATAR_DEFAULT"; restriction_chat?: "ALLOW_INCOMING" | "BLOCK_INCOMING"; }; } export default MonetaryAccountPutRequest;