AttendanceAgendaItem
An agenda item which can be attended, it's either an ActivityBreakEventAgendaItem
or a SessionEventAgendaItem
.
interface AttendanceAgendaItem {
backgroundColor: HexColorCode
comment: String
createdAt: DateTime!
createdBy: String
date: LocalDate!
details: String
end: LocalTime!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
overview: String
showBoldName: Boolean!
start: LocalTime!
textColor: HexColorCode
tracks: [Track!]!
type: AttendanceAgendaItemType!
uniqueCode: String
}
Fields
AttendanceAgendaItem.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the agenda item. Optional.
AttendanceAgendaItem.comment
● String
scalar
A UTF-8 string comment for an agenda item. Optional.
AttendanceAgendaItem.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
AttendanceAgendaItem.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
AttendanceAgendaItem.date
● LocalDate!
non-null scalar
The date the agenda item will occur.
AttendanceAgendaItem.details
● String
scalar
A UTF-8 string that provides a description of the agenda item. It is not displayed publicly and is intended to be used by event organizers. Optional.
AttendanceAgendaItem.end
● LocalTime!
non-null scalar
The time the agenda item will end.
AttendanceAgendaItem.id
● ID!
non-null scalar
The unique identifier for an agenda item.
AttendanceAgendaItem.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
AttendanceAgendaItem.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
AttendanceAgendaItem.name
● String!
non-null scalar
A UTF-8 string representing the name of an agenda item.
AttendanceAgendaItem.overview
● String
scalar
A UTF-8 string that provides a brief overview of the agenda item that is displayed in the agenda. Optional.
AttendanceAgendaItem.showBoldName
● Boolean!
non-null scalar
A flag indicating whether the name should be bold when rendering the agenda item. false
by default.
AttendanceAgendaItem.start
● LocalTime!
non-null scalar
The time the agenda item will start.
AttendanceAgendaItem.textColor
● HexColorCode
scalar
The hex color code to use when rendering the agenda item's text. Optional.
AttendanceAgendaItem.tracks
● [Track!]!
non-null object
The tracks associated with the agenda item.
If an agenda item is allocated to a single track, the single track will be returned. If an agenda item spans multiple tracks, all tracks that it spans will be returned.
AttendanceAgendaItem.type
● AttendanceAgendaItemType!
non-null enum
A value indicating the type of the agenda item.
AttendanceAgendaItem.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the agenda item. Optional.
The value must be unique across all agenda items for an event.
Member Of
AgendaItemAttendance
object
Implemented By
ActivityBreakAttendanceAgendaItem
object ● SessionAttendanceAgendaItem
object