RazorpayRefundBaseRequestBody constructor
- @JsonSerializable(includeIfNull: false)
- int? amount,
- RefundSpeed? speed,
- IMap? notes,
- String? receipt,
Implementation
@JsonSerializable(includeIfNull: false)
const factory RazorpayRefundBaseRequestBody({
int? amount, // Amount is optional for full refund, required for partial
RefundSpeed? speed,
IMap<dynamic>? notes, // IMap<string | number>
String? receipt, // Nullable string
}) = _RazorpayRefundBaseRequestBody;