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