Input$CouponFilterInput constructor

Input$CouponFilterInput({
  1. Enum$DiscountType? discountType,
  2. bool? expired,
  3. bool? redeemed,
  4. String? couponCode,
})

Implementation

factory Input$CouponFilterInput({
  Enum$DiscountType? discountType,
  bool? expired,
  bool? redeemed,
  String? couponCode,
}) =>
    Input$CouponFilterInput._({
      if (discountType != null) r'discountType': discountType,
      if (expired != null) r'expired': expired,
      if (redeemed != null) r'redeemed': redeemed,
      if (couponCode != null) r'couponCode': couponCode,
    });