Skip to main content

ExhibitionBookingWithRegistrationMeeting

This represents a meeting between an exhibition booking and a registration.

type ExhibitionBookingWithRegistrationMeeting implements ExhibitionBookingMeeting {
createdAt: DateTime!
createdBy: String
date: LocalDate!
end: LocalTime!
id: ID!
isPreScheduled: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
notes: String
start: LocalTime!
status: MeetingStatus!
type: ExhibitionBookingMeetingType!
with: Registration!
}

Fields

ExhibitionBookingWithRegistrationMeeting.createdAt ● DateTime! non-null scalar

The date and time the record was created.

ExhibitionBookingWithRegistrationMeeting.createdBy ● String scalar

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

ExhibitionBookingWithRegistrationMeeting.date ● LocalDate! non-null scalar

The date of the meeting.

ExhibitionBookingWithRegistrationMeeting.end ● LocalTime! non-null scalar

The end time of the meeting.

ExhibitionBookingWithRegistrationMeeting.id ● ID! non-null scalar

The unique identifier for the meeting.

ExhibitionBookingWithRegistrationMeeting.isPreScheduled ● Boolean! non-null scalar

A flag indicating whether the meeting was pre-scheduled, i.e. created by the Meeting Matching process.

ExhibitionBookingWithRegistrationMeeting.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

ExhibitionBookingWithRegistrationMeeting.lastModifiedBy ● String scalar

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

ExhibitionBookingWithRegistrationMeeting.notes ● String scalar

The notes associated with the meeting. Optional.

ExhibitionBookingWithRegistrationMeeting.start ● LocalTime! non-null scalar

The start time of the meeting.

ExhibitionBookingWithRegistrationMeeting.status ● MeetingStatus! non-null enum

The status of the meeting.

ExhibitionBookingWithRegistrationMeeting.type ● ExhibitionBookingMeetingType! non-null enum

The type of the meeting.

ExhibitionBookingWithRegistrationMeeting.with ● Registration! non-null object

The registration that the meeting will take place with.

Interfaces

ExhibitionBookingMeeting interface

Defines the details of a meeting for an exhibition booking.