RazorpayCustomerCreateRequestBody constructor
- @JsonSerializable(includeIfNull: false)
const
RazorpayCustomerCreateRequestBody(
{ - String? name,
- String? email,
- dynamic contact,
- @JsonKey(toJson: _boolToInt, fromJson: _intToBool) bool? fail_existing,
- String? gstin,
- IMap? notes,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RazorpayCustomerCreateRequestBody({
String? name,
String? email,
dynamic contact, // string | number
@JsonKey(toJson: _boolToInt, fromJson: _intToBool)
bool? fail_existing, // boolean | 0 | 1
String? gstin,
IMap<dynamic>? notes, // IMap<string | number>
}) = _RazorpayCustomerCreateRequestBody;