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.
- : Int
- # Indicates whether the coupon code distinguishes between upper and lower case
- # letters.
- : Boolean
- # Number of available coupons.
- : Int
- # List of available coupons, limited to first 1,000.
- : [PromotionCoupon] @deprecated( reason: "Deprecated field. Use couponList instead." )
- # List of available coupons.
- #
- # Arguments
- # limit: Maximum number of coupons that should be fetched.
- (: Int): PromotionCouponList
- }