CourseDiscountCode
Discount codes can be defined by event organizers and communicated to attendees who can use them during course registration to get a discount on the standard fee.
type CourseDiscountCode {
applicability: CourseDiscountCodeApplicability!
availableFrom: DateTime
availableTo: DateTime
code: String!
createdAt: DateTime!
createdBy: String
discount: Discount!
discountType: DiscountType!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
}
Fields
CourseDiscountCode.applicability
● CourseDiscountCodeApplicability!
non-null object
Defines which course fee types this discount code can be applied to.
CourseDiscountCode.availableFrom
● DateTime
scalar
The date and time from when the discount code can be used. Optional.
CourseDiscountCode.availableTo
● DateTime
scalar
The date and time until when the discount code can be used. Optional.
CourseDiscountCode.code
● String!
non-null scalar
The code that attendees can specify during course registration to obtain a discount.
Codes must be unique within an event an event or contact store.