@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
15 lines (14 loc) • 327 B
text/typescript
export interface UpdateCardStatusRequest {
/**
* Card number or card ID.
*/
card: string;
/**
* Status of the card. One of the following: **block**, **unblock**
*/
status: string;
/**
* Reason for blocking the card. Relevant when the value of `status` is **block**.
*/
blocked_reason?: string;
};