SessionRole
Defines a role for a session for an event.
type SessionRole {
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
id: ID!
includeInOnlineAgenda: Boolean!
isAirCastStudioHost: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
uniqueCode: String
}
Fields
SessionRole.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
SessionRole.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
SessionRole.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this session role.
CustomField
s and CustomFieldDefinition
s can be matched through the definitionId
and id
fields, respectively.
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
).
SessionRole.customFields.input
● CustomFieldSearchFilterInput!
non-null input
SessionRole.customFields.limit
● PaginationLimit!
non-null scalar
SessionRole.customFields.offset
● NonNegativeInt!
non-null scalar
SessionRole.id
● ID!
non-null scalar
The unique identifier for a session role.
SessionRole.includeInOnlineAgenda
● Boolean!
non-null scalar
A flag indicating whether this session role should be included in an OnAIR online agenda. false
by default.
SessionRole.isAirCastStudioHost
● Boolean!
non-null scalar
A flag indicating whether this session role is treated as the studio host of a specific AIRCast session. false
by default.
An AIRCast Studio Host has access to the full range of functionality, including being able to invite external guests or attendees to the Main Stage and creating Breakout Rooms.
SessionRole.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
SessionRole.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
SessionRole.name
● String!
non-null scalar
A UTF-8 string value that represents the name of the role for a session. Examples include "Interpreter", "Moderator" and "Host".
SessionRole.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the session role setup. Optional.
The value must be unique across all session roles for an event.
Member Of
SessionRoleAssignment
object