Skip to main content

CreateInformationEventAgendaItemInput

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

input CreateInformationEventAgendaItemInput {
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​

CreateInformationEventAgendaItemInput.backgroundColor ● HexColorCode scalar​

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

The default value is #376092.

CreateInformationEventAgendaItemInput.comment ● String scalar​

A UTF-8 string comment for the information block. Optional.

CreateInformationEventAgendaItemInput.date ● LocalDate! non-null scalar​

The date the information block is for.

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

CreateInformationEventAgendaItemInput.doNotPublishToAttendeeApp ● Boolean scalar​

A flag indicating whether the information block should not be published in the agenda on the Attendee App. Optional.

The default value is false.

CreateInformationEventAgendaItemInput.doNotPublishToEventWebsite ● Boolean scalar​

A flag indicating whether the information block should not be published in the agenda on the Event Website. Optional.

The default value is false.

CreateInformationEventAgendaItemInput.doNotPublishToOnAir ● Boolean scalar​

A flag indicating whether the information block should not be published in the agenda on OnAir. Optional.

The default value is false.

CreateInformationEventAgendaItemInput.end ● LocalTime! non-null scalar​

The end time that the information block will be displayed at.

CreateInformationEventAgendaItemInput.eventId ● ID! non-null scalar​

The identifier of the event the information block is associated with.

CreateInformationEventAgendaItemInput.name ● String! non-null scalar​

A UTF-8 string representing the information block.

The value must be unique across all agenda items for an event.

CreateInformationEventAgendaItemInput.overview ● String scalar​

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

CreateInformationEventAgendaItemInput.showBoldName ● Boolean scalar​

A flag indicating whether the name should be bold when rendering the information block in the agenda. Optional.

The default value is false.

CreateInformationEventAgendaItemInput.showTimes ● Boolean scalar​

A flag indicating whether the start and end times for the information block should be shown in the agenda. Optional.

The default value is false.

CreateInformationEventAgendaItemInput.start ● LocalTime! non-null scalar​

The start time that the information block will be displayed at.

CreateInformationEventAgendaItemInput.textColor ● HexColorCode scalar​

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

The default value is #FFFFFF.

CreateInformationEventAgendaItemInput.trackNumbers ● [PositiveInt!] list scalar​

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

CreateInformationEventAgendaItemInput.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 agenda items for an event.

Member Of​

createInformationEventAgendaItem mutation