RegistrationWithRegistrationMeeting
This represents a meeting between a registration and another registration.
type RegistrationWithRegistrationMeeting implements RegistrationMeeting {
createdAt: DateTime!
createdBy: String
date: LocalDate!
end: LocalTime!
id: ID!
isPreScheduled: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
notes: String
start: LocalTime!
status: MeetingStatus!
type: RegistrationMeetingType!
with: Registration!
}
Fields
RegistrationWithRegistrationMeeting.createdAt ● DateTime! non-null scalar
The date and time the record was created.
RegistrationWithRegistrationMeeting.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
RegistrationWithRegistrationMeeting.date ● LocalDate! non-null scalar
The date of the meeting.
RegistrationWithRegistrationMeeting.end ● LocalTime! non-null scalar
The end time of the meeting.
RegistrationWithRegistrationMeeting.id ● ID! non-null scalar
The unique identifier for the meeting.
RegistrationWithRegistrationMeeting.isPreScheduled ● Boolean! non-null scalar
A flag indicating whether the meeting was pre-scheduled, i.e. created by the Meeting Matching process.
RegistrationWithRegistrationMeeting.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
RegistrationWithRegistrationMeeting.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
RegistrationWithRegistrationMeeting.notes ● String scalar
The notes associated with the meeting. Optional.
RegistrationWithRegistrationMeeting.start ● LocalTime! non-null scalar
The start time of the meeting.
RegistrationWithRegistrationMeeting.status ● MeetingStatus! non-null enum
The status of the meeting.
RegistrationWithRegistrationMeeting.type ● RegistrationMeetingType! non-null enum
The type of the meeting.
RegistrationWithRegistrationMeeting.with ● Registration! non-null object
The registration that the meeting will take place with.
Interfaces
RegistrationMeeting interface
Defines the details of a meeting for a registration.