RegistrationSetup
Defines the settings for registrations for an event in EventsAir.
type RegistrationSetup {
discountCodes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationDiscountCode!]!
preferences: RegistrationPreferences!
registrationGroups(
input: EventRegistrationGroupSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationGroup!]!
registrationTypes(
input: EventRegistrationTypeSearchFilterInput! = [object Object]
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.
See EventRegistrationGroupSearchFilterInput
for details on how the optional input argument can be used to filter registration groups.
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.input ● EventRegistrationGroupSearchFilterInput! non-null input
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.
See EventRegistrationTypeSearchFilterInput
for details on how the optional input argument can be used to filter registration types.
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.input ● EventRegistrationTypeSearchFilterInput! non-null input
RegistrationSetup.registrationTypes.limit ● PaginationLimit! non-null scalar
RegistrationSetup.registrationTypes.offset ● NonNegativeInt! non-null scalar
Member Of
EventSetup object