@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
11 lines (10 loc) • 376 B
text/typescript
export interface CompletePayoutRequest {
/**
* ID of the payout. String starting with **payout_**.
*/
payout: `payout_${string}`;
/**
* The payout amount. Decimal, including the correct number of decimal places for the currency exponent, as defined in ISO 2417:2015. If the amount is a whole number, use an integer and not a decimal.
*/
amount: string;
};