Input$UpdateCouponSettingsInput constructor

Input$UpdateCouponSettingsInput({
  1. bool? enabled,
  2. Input$DiscountDtoInput? discount,
  3. String? amount,
  4. 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,
    });