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