export interface ReleaseFundsFromEscrowRequest { /** * ID of the payment. String starting with **payment_**. */ payment: `payment_${string}`; /** * ID of the escrow. String starting with **escrow_**. */ escrow: `escrow_${string}`; /** * A list of objects. Each object contains an `ewallet` field, and optionally 'amount' or 'percentage'. */ ewallets?: string; /** * Determines the percentage of the escrow to release. */ percentage?: string; /** * Determines the amount to release from escrow. */ amount?: string; } //# sourceMappingURL=ReleaseFundsFromEscrowRequest.d.ts.map