BlockedMeeting
This represents a blocked time slot where meetings cannot be scheduled or requested.
type BlockedMeeting implements ExhibitionBookingMeeting, RegistrationMeeting {
createdAt: DateTime!
createdBy: String
date: LocalDate!
end: LocalTime!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
notes: String
start: LocalTime!
}
Fields
BlockedMeeting.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
BlockedMeeting.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
BlockedMeeting.date
● LocalDate!
non-null scalar
The date of the meeting.
BlockedMeeting.end
● LocalTime!
non-null scalar
The end time of the meeting.
BlockedMeeting.id
● ID!
non-null scalar
The unique identifier for the meeting.
BlockedMeeting.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
BlockedMeeting.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
BlockedMeeting.notes
● String
scalar
The notes associated with the meeting. Optional.
BlockedMeeting.start
● LocalTime!
non-null scalar
The start time of the meeting.
Interfaces
ExhibitionBookingMeeting
interface
Defines the details of a meeting for an exhibition booking.
RegistrationMeeting
interface
Defines the details of a meeting for a registration.
Member Of
BlockExhibitionBookingTimeSlotPayload
object ● BlockRegistrationTimeSlotPayload
object