ActivityBreakAttendanceAgendaItem
Defines an activity/break agenda item.
type ActivityBreakAttendanceAgendaItem implements AttendanceAgendaItem {
backgroundColor: HexColorCode
comment: String
createdAt: DateTime!
createdBy: String
date: LocalDate!
details: String
end: LocalTime!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
overview: String
showBoldName: Boolean!
start: LocalTime!
textColor: HexColorCode
tracks: [Track!]!
type: AttendanceAgendaItemType!
uniqueCode: String
}
Fields
ActivityBreakAttendanceAgendaItem.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the activity/break in the agenda. Optional.
ActivityBreakAttendanceAgendaItem.comment
● String
scalar
A UTF-8 string comment for the activity/break. Optional.
ActivityBreakAttendanceAgendaItem.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
ActivityBreakAttendanceAgendaItem.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
ActivityBreakAttendanceAgendaItem.date
● LocalDate!
non-null scalar
The date the activity/break will occur.
ActivityBreakAttendanceAgendaItem.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.
ActivityBreakAttendanceAgendaItem.end
● LocalTime!
non-null scalar
The time the activity/break will end.
ActivityBreakAttendanceAgendaItem.id
● ID!
non-null scalar
The unique identifier for the activity/break.
ActivityBreakAttendanceAgendaItem.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
ActivityBreakAttendanceAgendaItem.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
ActivityBreakAttendanceAgendaItem.name
● String!
non-null scalar
A UTF-8 string representing the activity/break.
ActivityBreakAttendanceAgendaItem.overview
● String
scalar
A UTF-8 string that provides a brief overview of the activity/break that is displayed in the agenda. Optional.
ActivityBreakAttendanceAgendaItem.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.
ActivityBreakAttendanceAgendaItem.start
● LocalTime!
non-null scalar
The time the activity/break will start.
ActivityBreakAttendanceAgendaItem.textColor
● HexColorCode
scalar
The hex color code to use when rendering the activity/break's text in the agenda. Optional.
ActivityBreakAttendanceAgendaItem.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.
ActivityBreakAttendanceAgendaItem.type
● AttendanceAgendaItemType!
non-null enum
A value indicating the type of the agenda item. Returns AttendanceAgendaItemType.ACTIVITY_BREAK
.
ActivityBreakAttendanceAgendaItem.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
AttendanceAgendaItem
interface
An agenda item which can be attended, it's either an ActivityBreakEventAgendaItem
or a SessionEventAgendaItem
.