RazorpayInstantSettlementCreateRequestBody constructor
- @JsonSerializable(includeIfNull: false)
const
RazorpayInstantSettlementCreateRequestBody(
{ - required dynamic amount,
- @JsonKey(toJson: _boolToInt, fromJson: _intToBool) bool? settle_full_balance,
- String? description,
- IMap? notes,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RazorpayInstantSettlementCreateRequestBody({
required dynamic amount, // number | string
@JsonKey(toJson: _boolToInt, fromJson: _intToBool)
bool? settle_full_balance, // 0 | 1
String? description,
IMap<dynamic>? notes,
}) = _RazorpayInstantSettlementCreateRequestBody;