Skip to main content

HeadingEventAgendaItem

Defines a heading in an agenda.

type HeadingEventAgendaItem implements 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

HeadingEventAgendaItem.backgroundColor ● HexColorCode scalar

The hex color code to use for the background when rendering the heading in the agenda. Optional.

HeadingEventAgendaItem.comment ● String scalar

A UTF-8 string comment for the heading. Optional.

HeadingEventAgendaItem.createdAt ● DateTime! non-null scalar

The date and time the record was created.

HeadingEventAgendaItem.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

HeadingEventAgendaItem.date ● LocalDate! non-null scalar

The date the heading is for.

HeadingEventAgendaItem.details ● String scalar

A UTF-8 string that provides a description of the heading. It is not displayed publicly and is intended to be used by event organizers. Optional.

HeadingEventAgendaItem.end ● LocalTime! non-null scalar

The end time that the heading will be displayed at.

HeadingEventAgendaItem.id ● ID! non-null scalar

The unique identifier for the heading.

HeadingEventAgendaItem.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

HeadingEventAgendaItem.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

HeadingEventAgendaItem.name ● String! non-null scalar

A UTF-8 string representing the heading.

HeadingEventAgendaItem.overview ● String scalar

A UTF-8 string that provides a brief overview of the heading that is displayed in the agenda. Optional.

HeadingEventAgendaItem.showBoldName ● Boolean! non-null scalar

A flag indicating whether the name should be bold when rendering the heading in the agenda. false by default.

HeadingEventAgendaItem.start ● LocalTime! non-null scalar

The start time that the heading will be displayed at.

HeadingEventAgendaItem.textColor ● HexColorCode scalar

The hex color code to use when rendering the heading's text in the agenda. Optional.

HeadingEventAgendaItem.tracks ● [Track!]! non-null object

The tracks associated with the heading.

If the heading is allocated to a single track, the single track will be returned. If the heading spans multiple tracks, all tracks that it spans will be returned.

HeadingEventAgendaItem.type ● EventAgendaItemType! non-null enum

A value indicating the type of the agenda item. Returns EventAgendaItemType.HEADING.

HeadingEventAgendaItem.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the heading. Optional.

The value must be unique across all headings for an event.

Interfaces

EventAgendaItem interface

An item which occupies a timeslot in the agenda.