export interface CreateGroupRefundRequest { /** * The amount of the refund, in the currency of the group payment. Decimal. If this parameter is omitted, the entire group payment is refunded. */ amount?: number; /** * ID of the group payment that the refund is charged against. String starting with **gp_**. */ group_payment: `gp_${string}`; } //# sourceMappingURL=CreateGroupRefundRequest.d.ts.map