MembershipDiscountCodeApplicability
Membership discount code applicability.
type MembershipDiscountCodeApplicability {
appliesToAllMembershipCategories: Boolean!
membershipFeeTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipFeeType!]!
}
Fields
MembershipDiscountCodeApplicability.appliesToAllMembershipCategories
● Boolean!
non-null scalar
Defines whether the discount code applies to all membership categories defined in the membership contact store.
MembershipDiscountCodeApplicability.membershipFeeTypes
● [MembershipFeeType!]!
non-null interface
A list of all the membership fee types that the discount code can be applied to.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
MembershipDiscountCodeApplicability.membershipFeeTypes.limit
● PaginationLimit!
non-null scalar
MembershipDiscountCodeApplicability.membershipFeeTypes.offset
● NonNegativeInt!
non-null scalar
Member Of
MembershipDiscountCode
object