@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
23 lines (22 loc) • 667 B
text/typescript
export interface SimulateACardRefundRequest {
/**
* The amount of the refund, in units of the currency defined in `currency`. Decimal.
*/
amount: number;
/**
* ID of the card. String starting with **card_**.
*/
card_id: `card_${string}`;
/**
* The refund currency. Three-letter ISO 4217 code. Uppercase.
*/
currency: string;
/**
* Four-digit merchant category code (MCC) of the initiator of the refund, as defined in [ISO 18245](https://www.iso.org/standard/33365.html).
*/
merchant_category_code?: string;
/**
* The name and location of the merchant that initiates the refund.
*/
merchant_name_location?: string;
};