Registration
A registration encapsulates information about the attendee and the options selected when registering to attend an event.
type Registration {
availableMeetingTimeSlots: [MeetingScheduleTimeSlot!]!
comment: String
contact: Contact!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
dateTime: DateTime!
fee: Fee!
id: ID!
isGroupInventory: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
meetingPreferences: RegistrationMeetingPreferences!
meetings(
input: RegistrationMeetingSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [RegistrationMeeting!]!
paymentDetails: RegistrationPaymentDetails!
tickets: PositiveInt!
type: RegistrationType!
}
Fields
Registration.availableMeetingTimeSlots
● [MeetingScheduleTimeSlot!]!
non-null object
The time slots in the meeting schedule of the registration that are available to book meetings.