InformationEventAgendaItem
Defines an agenda information block.
type InformationEventAgendaItem implements EventAgendaItem {
  backgroundColor: HexColorCode
  comment: String
  createdAt: DateTime!
  createdBy: String
  date: LocalDate!
  details: String
  doNotPublishToAttendeeApp: Boolean!
  doNotPublishToEventWebsite: Boolean!
  doNotPublishToOnAir: Boolean!
  end: LocalTime!
  id: ID!
  lastModifiedAt: DateTime!
  lastModifiedBy: String
  name: String!
  overview: String
  showBoldName: Boolean!
  showTimes: Boolean!
  start: LocalTime!
  textColor: HexColorCode
  tracks: [Track!]!
  type: EventAgendaItemType!
  uniqueCode: String
}
Fields
InformationEventAgendaItem.backgroundColor ● HexColorCode scalar
The hex color code to use for the background when rendering the information block in the agenda. Optional.
InformationEventAgendaItem.comment ● String scalar
A UTF-8 string comment for the information block. Optional.
InformationEventAgendaItem.createdAt ● DateTime! non-null scalar
The date and time the record was created.
InformationEventAgendaItem.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
InformationEventAgendaItem.date ● LocalDate! non-null scalar
The date the information block is for.
InformationEventAgendaItem.details ● String scalar
A UTF-8 string that provides a description of the information block. It is not displayed publicly and is intended to be used by event organizers. Optional.
InformationEventAgendaItem.doNotPublishToAttendeeApp ● Boolean! non-null scalar
A flag indicating whether the information block should not be published in the agenda on the Attendee App.
InformationEventAgendaItem.doNotPublishToEventWebsite ● Boolean! non-null scalar
A flag indicating whether the information block should not be published in the agenda on the Event Website.
InformationEventAgendaItem.doNotPublishToOnAir ● Boolean! non-null scalar
A flag indicating whether the information block should not be published in the agenda on OnAir.
InformationEventAgendaItem.end ● LocalTime! non-null scalar
The end time that the information block will be displayed at.
InformationEventAgendaItem.id ● ID! non-null scalar
The unique identifier for the information block.
InformationEventAgendaItem.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
InformationEventAgendaItem.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
InformationEventAgendaItem.name ● String! non-null scalar
A UTF-8 string representing the information block.
InformationEventAgendaItem.overview ● String scalar
A UTF-8 string that provides a brief overview of the information block that is displayed in the agenda. Optional.
InformationEventAgendaItem.showBoldName ● Boolean! non-null scalar
A flag indicating whether the name should be bold when rendering the information block in the agenda.
InformationEventAgendaItem.showTimes ● Boolean! non-null scalar
A flag indicating whether the start and end times for the information block should be shown in the agenda.
InformationEventAgendaItem.start ● LocalTime! non-null scalar
The start time that the information block will be displayed at.
InformationEventAgendaItem.textColor ● HexColorCode scalar
The hex color code to use when rendering the information block's text in the agenda. Optional.
InformationEventAgendaItem.tracks ● [Track!]! non-null object
The tracks associated with the information block.
If the information block is allocated to a single track, the single track will be returned. If the information block spans multiple tracks, all tracks that it spans will be returned.
InformationEventAgendaItem.type ● EventAgendaItemType! non-null enum
A value indicating the type of the agenda item. Returns EventAgendaItemType.INFORMATION.
InformationEventAgendaItem.uniqueCode ● String scalar
A customer supplied, UTF-8 string value that represents a unique code for the information block. Optional.
The value must be unique across all information blocks for an event.
Interfaces
EventAgendaItem interface
An item which occupies a timeslot in the agenda.
Member Of
CreateInformationEventAgendaItemPayload  object ● UpdateInformationEventAgendaItemPayload  object