@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
23 lines (22 loc) • 631 B
text/typescript
export interface SimulateACardAdjustmentRequest {
/**
* The amount of the adjustment, in units of the currency defined in `currency`. Decimal.
*/
amount: number;
/**
* ID of the card. String starting with **card_**.
*/
card_id: `card_${string}`;
/**
* ID of the transaction to adjust. String starting with **cit_**.
*/
card_transaction_id: `cit_${string}`;
/**
* The adjustment currency. Three-letter ISO 4217 code. Uppercase.
*/
currency: string;
/**
* Indicates the financial impact of the adjustment. One of the following: **credit**, **debit**.
*/
financial_impact: string;
};