@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
15 lines (14 loc) • 419 B
text/typescript
export interface PayAnOrderRequest {
/**
* ID of the order to pay. String starting with **order_**.
*/
order: `order_${string}`;
/**
* A JSON object defined by the client.
*/
metadata?: object;
/**
* ID of the payment method. String starting with **card_** or **other_**. If not specified, the payment method is the `default_payment_method` of the customer.
*/
payment_method?: number;
};