Skip to main content

UpdateEventCourseInput

Defines the input for updating a course in an event.

input UpdateEventCourseInput {
addAutoLoginToken: Boolean
backgroundColor: HexColorCode
classifications: [UpdateCourseClassificationInput!]
confirmationMergeDocumentId: ID
courseId: ID!
credits: [UpdateCourseCreditInput!]
customFields: [CustomFieldInput!]
dateText: String
endDate: LocalDate
endTime: LocalTime
eventId: ID!
externalRegistrationUrl: URL
externalWebsiteUrl: URL
foodAndBeverage: String
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

UpdateEventCourseInput.addAutoLoginToken ● Boolean scalar

A flag indicating whether attach the contact's auto login token to the externalRegistrationUrl allowing the registration site to be pre-populated with the contacts's details. Optional.

UpdateEventCourseInput.backgroundColor ● HexColorCode scalar

The hex color code to use for the background when rendering the course. Optional.

UpdateEventCourseInput.classifications ● [UpdateCourseClassificationInput!] list input

The classifications to create/update/delete for this course. Optional.

Omitting the input value entirely will keep the existing classifications as-is. Passing null or an empty list will remove all classifications from this course. If passing a list with classifications, omitted existing classifications will be removed from this course. Classifications where the identifier is specified will be updated, otherwise they will be created.

UpdateEventCourseInput.confirmationMergeDocumentId ● ID scalar

The identifier of the confirmation merge document used to confirm registration for a course. Optional.

UpdateEventCourseInput.courseId ● ID! non-null scalar

The identifier of the course.

UpdateEventCourseInput.credits ● [UpdateCourseCreditInput!] list input

The credits to create/update/delete for this course. Optional.

Omitting the input value entirely will keep the existing credits as-is. Passing null or an empty list will remove all credits from this course. If passing a list with credits, omitted existing credits will be removed from this course. Credits where the identifier is specified will be updated, otherwise they will be created.

UpdateEventCourseInput.customFields ● [CustomFieldInput!] list input

The custom fields to update for this course. Optional.

UpdateEventCourseInput.dateText ● String scalar

The explanatory text for the start and end of this course. Optional.

UpdateEventCourseInput.endDate ● LocalDate scalar

The end date of the course. Optional.

UpdateEventCourseInput.endTime ● LocalTime scalar

The session end time of the course. Optional.

UpdateEventCourseInput.eventId ● ID! non-null scalar

The identifier of the event the course is associated with.

UpdateEventCourseInput.externalRegistrationUrl ● URL scalar

The URL for an EventsAir interactive registration site for this course. Optional.

UpdateEventCourseInput.externalWebsiteUrl ● URL scalar

The URL for an external registration site for this course. Optional.

UpdateEventCourseInput.foodAndBeverage ● String scalar

Notes on required catering for the sessions of this course. Optional.

UpdateEventCourseInput.inventoryLimit ● NonNegativeInt scalar

The inventory limit for this course. Optional.

If not specified the inventory will be unlimited.

UpdateEventCourseInput.itinerary ● String scalar

The itinerary for this course. Optional.

UpdateEventCourseInput.locationId ● ID scalar

The identifier of the location for this course. Optional.

UpdateEventCourseInput.masterCourseCode ● String scalar

The course unique code on which this course is based. Optional.

UpdateEventCourseInput.name ● String scalar

A UTF-8 string representing the name of the course. Optional.

UpdateEventCourseInput.overview ● String scalar

The overview for this course. Optional.

UpdateEventCourseInput.recordGrade ● Boolean scalar

A flag indicating whether grade will be recorded for course attendees. Optional.

UpdateEventCourseInput.recordScore ● Boolean scalar

A flag indicating whether score will be recorded for course attendees. Optional.

UpdateEventCourseInput.roomSetup ● String scalar

Notes about how the session room should be configured for this course. Optional.

UpdateEventCourseInput.seriesCode ● String scalar

The series code for this course. Optional.

UpdateEventCourseInput.startDate ● LocalDate scalar

The start date of the course. Optional.

UpdateEventCourseInput.startTime ● LocalTime scalar

The session start time of the course. Optional.

UpdateEventCourseInput.status ● CourseStatus enum

The status of this course. Optional.

UpdateEventCourseInput.textColor ● HexColorCode scalar

The hex color code to use when rendering the course's text. Optional.

UpdateEventCourseInput.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the course. Optional.

The value must be unique across all courses for an event.

Member Of

updateEventCourse mutation