RazorpayRefundPaymentLinkAccountCreateRequestBody constructor
- @JsonSerializable(includeIfNull: false)
const
RazorpayRefundPaymentLinkAccountCreateRequestBody(
{ - required dynamic amount,
- @JsonKey(toJson: _boolToInt, fromJson: _intToBool) bool? reverse_all,
- String? speed,
- IMap? notes,
- String? receipt,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RazorpayRefundPaymentLinkAccountCreateRequestBody({
required dynamic amount,
@JsonKey(toJson: _boolToInt, fromJson: _intToBool)
bool? reverse_all, // 1 | 0
// Add other standard refund params if applicable here (speed, notes, receipt)
String? speed, // 'normal' | 'optimum'
IMap<dynamic>? notes,
String? receipt,
}) = _RazorpayRefundPaymentLinkAccountCreateRequestBody;