CreateEventCourseInput
Defines the input for creating a course in an event.
input CreateEventCourseInput {
addAutoLoginToken: Boolean!
backgroundColor: HexColorCode
classifications: [CreateCourseClassificationInput!]
confirmationMergeDocumentId: ID
credits: [CreateCourseCreditInput!]
customFields: [CustomFieldInput!]
dateText: String
endDate: LocalDate
endTime: LocalTime
eventId: ID!
externalRegistrationUrl: URL
externalWebsiteUrl: URL
foodAndBeverage: String
instructors: [CreateCourseInstructorInput!]
inventoryLimit: NonNegativeInt
itinerary: String
locationId: ID
masterCourseCode: String
name: String!
overview: String
recordGrade: Boolean!
recordScore: Boolean!
roomSetup: String
seriesCode: String
startDate: LocalDate
startTime: LocalTime
status: CourseStatus!
textColor: HexColorCode
uniqueCode: String!
}
Fields
CreateEventCourseInput.addAutoLoginToken ● Boolean! non-null scalar
A flag indicating whether to attach the contact's auto login token to the externalRegistrationUrl allowing the registration site to be pre-populated with the contacts's details.
CreateEventCourseInput.backgroundColor ● HexColorCode scalar
The hex color code to use for the background when rendering the course. Optional.
CreateEventCourseInput.classifications ● [CreateCourseClassificationInput!] list input
The classifications to create for this course. Optional.
CreateEventCourseInput.confirmationMergeDocumentId ● ID scalar
The identifier of the confirmation merge document used to confirm registration for a course. Optional.
CreateEventCourseInput.credits ● [CreateCourseCreditInput!] list input
The course credits to create for this course. Optional.
CreateEventCourseInput.customFields ● [CustomFieldInput!] list input
The custom fields to create for this course. Optional.
CreateEventCourseInput.dateText ● String scalar
The explanatory text for the start and end of this course. Optional.
CreateEventCourseInput.endDate ● LocalDate scalar
The end date of the course. Optional.
CreateEventCourseInput.endTime ● LocalTime scalar
The session end time of the course. Optional.
CreateEventCourseInput.eventId ● ID! non-null scalar
The identifier of the event the course is associated with.
CreateEventCourseInput.externalRegistrationUrl ● URL scalar
The URL for an EventsAir interactive registration site for this course. Optional.
CreateEventCourseInput.externalWebsiteUrl ● URL scalar
The URL for an external registration site for this course. Optional.
CreateEventCourseInput.foodAndBeverage ● String scalar
Notes on required catering for the sessions of this course. Optional.
CreateEventCourseInput.instructors ● [CreateCourseInstructorInput!] list input
The instructors to create for this course. Optional.
CreateEventCourseInput.inventoryLimit ● NonNegativeInt scalar
The inventory limit for this course. Optional.
If not specified the inventory will be unlimited.
CreateEventCourseInput.itinerary ● String scalar
The itinerary for this course. Optional.
CreateEventCourseInput.locationId ● ID scalar
The identifier of the location for this course. Optional.
CreateEventCourseInput.masterCourseCode ● String scalar
The course unique code on which this course is based. Optional.
CreateEventCourseInput.name ● String! non-null scalar
A UTF-8 string representing the name of the course.
CreateEventCourseInput.overview ● String scalar
The overview for this course. Optional.
CreateEventCourseInput.recordGrade ● Boolean! non-null scalar
A flag indicating whether grade will be recorded for course attendees.
CreateEventCourseInput.recordScore ● Boolean! non-null scalar
A flag indicating whether score will be recorded for course attendees.
CreateEventCourseInput.roomSetup ● String scalar
Notes about how the session room should be configured for this course. Optional.
CreateEventCourseInput.seriesCode ● String scalar
The series code for this course. Optional.
CreateEventCourseInput.startDate ● LocalDate scalar
The start date of the course. Optional.
CreateEventCourseInput.startTime ● LocalTime scalar
The session start time of the course. Optional.
CreateEventCourseInput.status ● CourseStatus! non-null enum
The status of this course.
CreateEventCourseInput.textColor ● HexColorCode scalar
The hex color code to use when rendering the course's text. Optional.
CreateEventCourseInput.uniqueCode ● String! non-null scalar
A customer supplied, UTF-8 string value that represents a unique code for the course.
The value must be unique across all courses for an event.
Member Of
createEventCourse mutation