@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
15 lines (14 loc) • 376 B
text/typescript
export interface CompletePaymentRequest {
/**
* ID of the payment to complete. String starting with **payment_**.
*/
token: `payment_${string}`;
/**
* Depends on the type of payment method. See ***Body Parameters***, below.
*/
param1?: string;
/**
* Depends on the type of payment method. See ***Body Parameters***, below.
*/
param2?: string;
};