@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
15 lines (14 loc) • 406 B
text/typescript
export interface SetTransferResponseRequest {
/**
* ID of the transfer transaction, from the 'id' field in the 'data' object of the response. 32-digit hexadecimal.
*/
id: string;
/**
* Determines how to handle the transfer. One of the following values: **accept**, **decline**, **cancel**
*/
status: string;
/**
* A JSON object defined by the client.
*/
metadata?: object;
};