SessionAttendanceAgendaItem
Defines an session agenda item.
type SessionAttendanceAgendaItem implements AttendanceAgendaItem {
assignedRoles: [SessionRoleAssignment!]!
backgroundColor: HexColorCode
comment: String
concurrentSessionBlock: SessionBlock
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
date: LocalDate!
details: String
end: LocalTime!
expectedAttendees: Int
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
location: Location
name: String!
overview: String
presentations: [Presentation!]!
showBoldName: Boolean!
start: LocalTime!
textColor: HexColorCode
tracks: [Track!]!
type: AttendanceAgendaItemType!
uniqueCode: String
}
Fields
SessionAttendanceAgendaItem.assignedRoles
● [SessionRoleAssignment!]!
non-null object
A list of people assigned to the session, including their role. Any role can be assigned to a person such as "Moderator", "Interpreter" or "Chairperson" depending on the needs of the session.
SessionAttendanceAgendaItem.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the session in the agenda. Optional.
SessionAttendanceAgendaItem.comment
● String
scalar
A UTF-8 string comment for the session. Optional.
SessionAttendanceAgendaItem.concurrentSessionBlock
● SessionBlock
object
The block associated with this session, if concurrent. Optional.
SessionAttendanceAgendaItem.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
SessionAttendanceAgendaItem.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
SessionAttendanceAgendaItem.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this session.
CustomFields
can be correlated with a CustomFieldDefinition
through the name
and type
fields.
See CustomFieldSearchFilterInput
for details on how the optional input
argument can be used to filter custom fields.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
SessionAttendanceAgendaItem.customFields.input
● CustomFieldSearchFilterInput!
non-null input
SessionAttendanceAgendaItem.customFields.limit
● PaginationLimit!
non-null scalar
SessionAttendanceAgendaItem.customFields.offset
● NonNegativeInt!
non-null scalar
SessionAttendanceAgendaItem.date
● LocalDate!
non-null scalar
The date the session will occur.
SessionAttendanceAgendaItem.details
● String
scalar
A UTF-8 string that provides a description of the session. It is not displayed publicly and is intended to be used by event organizers. Optional.
SessionAttendanceAgendaItem.end
● LocalTime!
non-null scalar
The time the session will end.
SessionAttendanceAgendaItem.expectedAttendees
● Int
scalar
The number of attendees expected for the session. Optional.
SessionAttendanceAgendaItem.id
● ID!
non-null scalar
The unique identifier for a session.
SessionAttendanceAgendaItem.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
SessionAttendanceAgendaItem.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
SessionAttendanceAgendaItem.location
● Location
object
The location for the session. Optional.
SessionAttendanceAgendaItem.name
● String!
non-null scalar
A UTF-8 string representing the name of a session.
SessionAttendanceAgendaItem.overview
● String
scalar
A UTF-8 string that provides a brief overview of the session that is displayed in the agenda. Optional.
SessionAttendanceAgendaItem.presentations
● [Presentation!]!
non-null object
The presentations assigned to the session.
SessionAttendanceAgendaItem.showBoldName
● Boolean!
non-null scalar
A flag indicating whether the name should be bold when rendering the session in the agenda. false
by default.
SessionAttendanceAgendaItem.start
● LocalTime!
non-null scalar
The time the session will start.
SessionAttendanceAgendaItem.textColor
● HexColorCode
scalar
The hex color code to use when rendering the session's text in the agenda. Optional.
SessionAttendanceAgendaItem.tracks
● [Track!]!
non-null object
The tracks associated with the session.
If a session is allocated to a single track, the single track will be returned. If a session spans multiple tracks, all tracks that it spans will be returned.
SessionAttendanceAgendaItem.type
● AttendanceAgendaItemType!
non-null enum
A value indicating the type of the agenda item. Returns AttendanceAgendaItemType.SESSION
.
SessionAttendanceAgendaItem.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the session. Optional.
The value must be unique across all sessions for an event.
Interfaces
AttendanceAgendaItem
interface
An agenda item which can be attended, it's either an ActivityBreakEventAgendaItem
or a SessionEventAgendaItem
.