@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
19 lines (18 loc) • 559 B
text/typescript
export interface CapturePaymentRequest {
/**
* ID of the payment. String starting with **payment_**.
*/
payment: `payment_${string}`;
/**
* The amount of the payment. Decimal. If this parameter is omitted, the entire remaining amount of the 'payment' object is paid.
*/
amount?: number;
/**
* Email address that the receipt for this transaction is sent to.
*/
receipt_email?: string;
/**
* A text description that appears in the customer's bank statement. Limited to 22 characters.
*/
statement_descriptor?: string;
};