@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
23 lines (22 loc) • 693 B
text/typescript
export interface SimulateACardAuthorizationReversalRequest {
/**
* Authorization code provided by client. See results example in [Simulate a Card Authorization Request](ref:simulate-a-card-authorization-request).
*/
auth_code: string;
/**
* 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 transaction. Three-letter ISO 4217 code. Uppercase.
*/
currency: string;
/**
* Retrieval reference number for the card transaction.
*/
retrieval_reference_number: string;
};