ActivityBreakEventAgendaItem
Defines an activity/break agenda item.
type ActivityBreakEventAgendaItem implements EventAgendaItem {
backgroundColor: HexColorCode
checkInViaOrganizerAppEnabled: Boolean!
checkOutViaOrganizerAppEnabled: Boolean!
comment: String
createdAt: DateTime!
createdBy: String
date: LocalDate!
details: String
doNotPublishToAttendeeApp: Boolean!
doNotPublishToEventWebsite: Boolean!
doNotPublishToMyAgenda: Boolean!
doNotPublishToOnAir: Boolean!
end: LocalTime!
expectedAttendees: Int
foodAndBeverage: String
id: ID!
indicateAttendanceEnabled: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
location: Location
name: String!
overview: String
roomSetup: String
showBoldName: Boolean!
start: LocalTime!
textColor: HexColorCode
tracks: [Track!]!
type: EventAgendaItemType!
uniqueCode: String
}
Fields
ActivityBreakEventAgendaItem.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the activity/break in the agenda. Optional.
ActivityBreakEventAgendaItem.checkInViaOrganizerAppEnabled
● Boolean!
non-null scalar
A flag indicating whether check in for the activity/break is enabled via scanning in the Organizer App.
ActivityBreakEventAgendaItem.checkOutViaOrganizerAppEnabled
● Boolean!
non-null scalar
A flag indicating whether check out for the activity/break is enable via scanning in the Organizer App.
ActivityBreakEventAgendaItem.comment
● String
scalar
A UTF-8 string comment for the activity/break. Optional.
ActivityBreakEventAgendaItem.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
ActivityBreakEventAgendaItem.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
ActivityBreakEventAgendaItem.date
● LocalDate!
non-null scalar
The date the activity/break will occur.
ActivityBreakEventAgendaItem.details
● String
scalar
A UTF-8 string that provides a description of the activity/break. It is not displayed publicly and is intended to be used by event organizers. Optional.
ActivityBreakEventAgendaItem.doNotPublishToAttendeeApp
● Boolean!
non-null scalar
A flag indicating whether the activity/break should not be published in the agenda on the Attendee App.
ActivityBreakEventAgendaItem.doNotPublishToEventWebsite
● Boolean!
non-null scalar
A flag indicating whether the activity/break should not be published in the agenda on the Event Website.
ActivityBreakEventAgendaItem.doNotPublishToMyAgenda
● Boolean!
non-null scalar
A flag indicating whether the activity/break should not be published in the agenda in My Agenda.
ActivityBreakEventAgendaItem.doNotPublishToOnAir
● Boolean!
non-null scalar
A flag indicating whether the activity/break should not be published in the agenda on OnAir.
ActivityBreakEventAgendaItem.end
● LocalTime!
non-null scalar
The time the activity/break will end.
ActivityBreakEventAgendaItem.expectedAttendees
● Int
scalar
The number of attendees expected for the activity/break. Optional.
ActivityBreakEventAgendaItem.foodAndBeverage
● String
scalar
A UTF-8 string detailing the food and beverage for the activity/break. Optional.
ActivityBreakEventAgendaItem.id
● ID!
non-null scalar
The unique identifier for the activity/break.
ActivityBreakEventAgendaItem.indicateAttendanceEnabled
● Boolean!
non-null scalar
A flag indicating whether attendees are allowed to indicate attendance for the activity/break.
ActivityBreakEventAgendaItem.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
ActivityBreakEventAgendaItem.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
ActivityBreakEventAgendaItem.location
● Location
object
The location for the activity/break. Optional.
ActivityBreakEventAgendaItem.name
● String!
non-null scalar
A UTF-8 string representing the activity/break.
ActivityBreakEventAgendaItem.overview
● String
scalar
A UTF-8 string that provides a brief overview of the activity/break that is displayed in the agenda. Optional.
ActivityBreakEventAgendaItem.roomSetup
● String
scalar
A UTF-8 string detailing the room setup for an activity/break such as information about seating, podium and other room layout options. Optional.
ActivityBreakEventAgendaItem.showBoldName
● Boolean!
non-null scalar
A flag indicating whether the name should be bold when rendering the activity/break in the agenda. false
by default.
ActivityBreakEventAgendaItem.start
● LocalTime!
non-null scalar
The time the activity/break will start.
ActivityBreakEventAgendaItem.textColor
● HexColorCode
scalar
The hex color code to use when rendering the activity/break's text in the agenda. Optional.
ActivityBreakEventAgendaItem.tracks
● [Track!]!
non-null object
The tracks associated with the activity/break.
If the activity/break is allocated to a single track, the single track will be returned. If the activity/break session spans multiple tracks, all tracks that it spans will be returned.
ActivityBreakEventAgendaItem.type
● EventAgendaItemType!
non-null enum
A value indicating the type of the agenda item. Returns EventAgendaItemType.ACTIVITY_BREAK
.
ActivityBreakEventAgendaItem.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the activity/break. Optional.
The value must be unique across all activities/breaks for an event.
Interfaces
EventAgendaItem
interface
An item which occupies a timeslot in the agenda.