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; } //# sourceMappingURL=CompletePayoutRequest.d.ts.map