RegistrationWithExhibitionBookingMeeting
This represents a meeting between a registration and an exhibition booking.
type RegistrationWithExhibitionBookingMeeting implements RegistrationMeeting {
createdAt: DateTime!
createdBy: String
date: LocalDate!
end: LocalTime!
id: ID!
isPreScheduled: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
meetingDiary: MeetingDiary!
notes: String
start: LocalTime!
status: MeetingStatus!
type: RegistrationMeetingType!
with: ExhibitionBooking!
}
Fields
RegistrationWithExhibitionBookingMeeting.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
RegistrationWithExhibitionBookingMeeting.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
RegistrationWithExhibitionBookingMeeting.date
● LocalDate!
non-null scalar
The date of the meeting.
RegistrationWithExhibitionBookingMeeting.end
● LocalTime!
non-null scalar
The end time of the meeting.
RegistrationWithExhibitionBookingMeeting.id
● ID!
non-null scalar
The unique identifier for the meeting.
RegistrationWithExhibitionBookingMeeting.isPreScheduled
● Boolean!
non-null scalar
A flag indicating whether the meeting was pre-scheduled, i.e. created by the Meeting Matching process.