MeetingScheduleTimeSlot
A time slot in a meeting schedule.
type MeetingScheduleTimeSlot {
createdAt: DateTime!
createdBy: String
date: LocalDate!
description: String!
end: LocalTime!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
start: LocalTime!
type: MeetingScheduleTimeSlotType!
}
Fields
MeetingScheduleTimeSlot.createdAt ● DateTime! non-null scalar
The date and time the record was created.
MeetingScheduleTimeSlot.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MeetingScheduleTimeSlot.date ● LocalDate! non-null scalar
The date of the meeting time slot.
MeetingScheduleTimeSlot.description ● String! non-null scalar
The description of the time slot.
MeetingScheduleTimeSlot.end ● LocalTime! non-null scalar
The end time of the time slot.
MeetingScheduleTimeSlot.id ● ID! non-null scalar
The unique identifier for a meeting schedule.
MeetingScheduleTimeSlot.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
MeetingScheduleTimeSlot.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
MeetingScheduleTimeSlot.start ● LocalTime! non-null scalar
The start time of the time slot.
MeetingScheduleTimeSlot.type ● MeetingScheduleTimeSlotType! non-null enum
The type of the time slot.
Member Of
MeetingDiary object ● MeetingSchedule object ● Registration object