RegistrationSetup
Defines the settings for registrations for an event in EventsAir.
type RegistrationSetup {
discountCodes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationDiscountCode!]!
preferences: RegistrationPreferences!
registrationGroups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationGroup!]!
registrationTypes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationType!]!
}
Fields
RegistrationSetup.discountCodes ● [RegistrationDiscountCode!]! non-null object
A list of registration discount codes defined for this event.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
RegistrationSetup.discountCodes.limit ● PaginationLimit! non-null scalar
RegistrationSetup.discountCodes.offset ● NonNegativeInt! non-null scalar
RegistrationSetup.preferences ● RegistrationPreferences! non-null object
The configuration preferences for a registration.
RegistrationSetup.registrationGroups ● [RegistrationGroup!]! non-null object
A list of registration groups associated with this event.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
RegistrationSetup.registrationGroups.limit ● PaginationLimit! non-null scalar
RegistrationSetup.registrationGroups.offset ● NonNegativeInt! non-null scalar
RegistrationSetup.registrationTypes ● [RegistrationType!]! non-null object
A list of registration types associated with this event.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
RegistrationSetup.registrationTypes.limit ● PaginationLimit! non-null scalar
RegistrationSetup.registrationTypes.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object