CreateEventCourseClassificationInput
Defines the input for creating a course classification in an event.
input CreateEventCourseClassificationInput {
courseClassificationTypeId: ID!
customFields: [CustomFieldInput!]
eventId: ID!
name: String!
uniqueCode: String
}
Fields
CreateEventCourseClassificationInput.courseClassificationTypeId
● ID!
non-null scalar
The identifier of the course classification type the course classification is associated with.
CreateEventCourseClassificationInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for the course classification. Optional.
CreateEventCourseClassificationInput.eventId
● ID!
non-null scalar
The identifier of the event the course classification is associated with.
CreateEventCourseClassificationInput.name
● String!
non-null scalar
A UTF-8 string representing the name of the course classification.
CreateEventCourseClassificationInput.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the course classification. Optional.
The value must be unique across all course classifications for an event or contact store.
Member Of
createEventCourseClassification
mutation