CreateEventCourseCreditTypeInput
Defines the input for creating a course credit type in an event.
input CreateEventCourseCreditTypeInput {
eventId: ID!
isDisabled: Boolean!
name: String!
uniqueCode: String
}
Fields
CreateEventCourseCreditTypeInput.eventId
● ID!
non-null scalar
The identifier of the event the course credit type is associated with.
CreateEventCourseCreditTypeInput.isDisabled
● Boolean!
non-null scalar
A flag indicating whether the course credit type can be used when adding new course credits to a course.
CreateEventCourseCreditTypeInput.name
● String!
non-null scalar
A UTF-8 string representing the name of the course credit type.
CreateEventCourseCreditTypeInput.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the course credit type. Optional.
The value must be unique across all course credit types for an event.
Member Of
createEventCourseCreditType
mutation