Input$UpdateCouponSettingsInput constructor
Input$UpdateCouponSettingsInput({
- bool? enabled,
- Input$DiscountDtoInput? discount,
- String? amount,
- Input$NumberInput? number,
Implementation
factory Input$UpdateCouponSettingsInput({
bool? enabled,
Input$DiscountDtoInput? discount,
String? amount,
Input$NumberInput? number,
}) =>
Input$UpdateCouponSettingsInput._({
if (enabled != null) r'enabled': enabled,
if (discount != null) r'discount': discount,
if (amount != null) r'amount': amount,
if (number != null) r'number': number,
});