GraphQL OBJECT

PromotionCouponSettings

Coupon settings for the promotion.

link Definition

  • type PromotionCouponSettings {
  • # Maximum number of times the unique coupon code can be used for a promotion.
  • couponUseLimit: Int
  • # Indicates whether the coupon code distinguishes between upper and lower case
  • # letters.
  • caseSensitiveCodes: Boolean
  • # Number of available coupons.
  • couponCount: Int
  • # List of available coupons, limited to first 1,000.
  • coupons: [PromotionCoupon] @deprecated( reason: "Deprecated field. Use couponList instead." )
  • # List of available coupons.
  • #
  • # Arguments
  • # limit: Maximum number of coupons that should be fetched.
  • couponList(limit: Int): PromotionCouponList
  • }