EventAgendaItem
An item which occupies a timeslot in the agenda.
interface EventAgendaItem {
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: EventAgendaItemType!
uniqueCode: String
}
Fields
EventAgendaItem.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the agenda item. Optional.
EventAgendaItem.comment
● String
scalar
A UTF-8 string comment for an agenda item. Optional.
EventAgendaItem.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
EventAgendaItem.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
EventAgendaItem.date
● LocalDate!
non-null scalar
The date the agenda item will occur.
EventAgendaItem.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.
EventAgendaItem.end
● LocalTime!
non-null scalar
The time the agenda item will end.
EventAgendaItem.id
● ID!
non-null scalar
The unique identifier for an agenda item.
EventAgendaItem.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
EventAgendaItem.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
EventAgendaItem.name
● String!
non-null scalar
A UTF-8 string representing the name of an agenda item.
EventAgendaItem.overview
● String
scalar
A UTF-8 string that provides a brief overview of the agenda item that is displayed in the agenda. Optional.
EventAgendaItem.showBoldName
● Boolean!
non-null scalar
A flag indicating whether the name should be bold when rendering the agenda item. false
by default.
EventAgendaItem.start
● LocalTime!
non-null scalar
The time the agenda item will start.
EventAgendaItem.textColor
● HexColorCode
scalar
The hex color code to use when rendering the agenda item's text. Optional.
EventAgendaItem.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.
EventAgendaItem.type
● EventAgendaItemType!
non-null enum
A value indicating the type of the agenda item.
EventAgendaItem.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
EventAgenda
object
Implemented By
ActivityBreakEventAgendaItem
object ● FunctionEventAgendaItem
object ● HeadingEventAgendaItem
object ● InformationEventAgendaItem
object ● SessionEventAgendaItem
object