Input$UpdateCouponInput constructor

Input$UpdateCouponInput({
  1. Input$DiscountDtoInput? discount,
  2. DateTime? from,
  3. DateTime? to,
})

Implementation

factory Input$UpdateCouponInput({
  Input$DiscountDtoInput? discount,
  DateTime? from,
  DateTime? to,
}) =>
    Input$UpdateCouponInput._({
      if (discount != null) r'discount': discount,
      if (from != null) r'from': from,
      if (to != null) r'to': to,
    });