UNPKG

@bebapps/rapyd-sdk

Version:

An un-official [Rapyd](https://rapyd.net) SDK for Node.js.

11 lines (10 loc) 364 B
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}`; };