Skip to main content

CreateHeadingEventAgendaItemInput

Defines the input for creating a new Heading Event Agenda Item.

input CreateHeadingEventAgendaItemInput {
backgroundColor: HexColorCode
comment: String
date: LocalDate!
details: String
doNotPublishToAttendeeApp: Boolean
doNotPublishToEventWebsite: Boolean
doNotPublishToOnAir: Boolean
end: LocalTime!
eventId: ID!
name: String!
overview: String
showBoldName: Boolean
showTimes: Boolean
start: LocalTime!
textColor: HexColorCode
trackNumbers: [PositiveInt!]
uniqueCode: String
}

Fields

CreateHeadingEventAgendaItemInput.backgroundColor ● HexColorCode scalar

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

CreateHeadingEventAgendaItemInput.comment ● String scalar

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

CreateHeadingEventAgendaItemInput.date ● LocalDate! non-null scalar

The date for the heading.

CreateHeadingEventAgendaItemInput.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.

CreateHeadingEventAgendaItemInput.doNotPublishToAttendeeApp ● Boolean scalar

A flag indicating whether the heading should not be published in the agenda on the Attendee App. false by Default. Optional.

CreateHeadingEventAgendaItemInput.doNotPublishToEventWebsite ● Boolean scalar

A flag indicating whether the heading should not be published in the agenda on the Event Website. false by Default. Optional.

CreateHeadingEventAgendaItemInput.doNotPublishToOnAir ● Boolean scalar

A flag indicating whether the heading should not be published in the agenda on OnAir. false by Default. Optional.

CreateHeadingEventAgendaItemInput.end ● LocalTime! non-null scalar

The end time that the heading will be displayed at.

CreateHeadingEventAgendaItemInput.eventId ● ID! non-null scalar

The identifier of the event the heading is associated with.

CreateHeadingEventAgendaItemInput.name ● String! non-null scalar

A UTF-8 string representing the heading. The value must be unique for all headings for an event.

CreateHeadingEventAgendaItemInput.overview ● String scalar

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

CreateHeadingEventAgendaItemInput.showBoldName ● Boolean scalar

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

CreateHeadingEventAgendaItemInput.showTimes ● Boolean scalar

A flag indicating whether the start and end times for the heading should be shown in the agenda. false by default. Optional.

CreateHeadingEventAgendaItemInput.start ● LocalTime! non-null scalar

The start time that the heading will be displayed at.

CreateHeadingEventAgendaItemInput.textColor ● HexColorCode scalar

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

CreateHeadingEventAgendaItemInput.trackNumbers ● [PositiveInt!] list scalar

The agenda track numbers the heading is associated with. The number can be between 1 - 99. Optional.

CreateHeadingEventAgendaItemInput.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.

Member Of

createHeadingEventAgendaItem mutation