Skip to main content

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.

RegistrationWithExhibitionBookingMeeting.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

RegistrationWithExhibitionBookingMeeting.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

RegistrationWithExhibitionBookingMeeting.meetingDiary ● MeetingDiary! non-null object

The exhibition booking meeting diary that the meeting is scheduled in.

RegistrationWithExhibitionBookingMeeting.notes ● String scalar

The notes associated with the meeting. Optional.

RegistrationWithExhibitionBookingMeeting.start ● LocalTime! non-null scalar

The start time of the meeting.

RegistrationWithExhibitionBookingMeeting.status ● MeetingStatus! non-null enum

The status of the meeting.

RegistrationWithExhibitionBookingMeeting.type ● RegistrationMeetingType! non-null enum

The type of the meeting.

RegistrationWithExhibitionBookingMeeting.with ● ExhibitionBooking! non-null object

The exhibition booking that the meeting will take place with.

Interfaces

RegistrationMeeting interface

Defines the details of a meeting for a registration.