UpdateEventCourseRegistrationInput
Defines the input for updating a course registration in an event.
input UpdateEventCourseRegistrationInput {
attendanceStatus: CourseAttendanceStatus
comment: String
courseFeeTypeId: ID
courseRegistrationId: ID!
customFields: [CustomFieldInput!]
dateTime: DateTime
discountCodeId: ID
eventId: ID!
grade: String
itineraryConfiguration: CourseRegistrationItineraryConfigurationInput
paymentDetails: UpdatePaymentDetailsInput
score: NonNegativeFloat
tickets: PositiveInt
}
Fields
UpdateEventCourseRegistrationInput.attendanceStatus ● CourseAttendanceStatus enum
The attendee's attendance status for the course. Optional.
UpdateEventCourseRegistrationInput.comment ● String scalar
Comment for the course registration. Optional.
UpdateEventCourseRegistrationInput.courseFeeTypeId ● ID scalar
The identifier of the course fee type for the course registration. Optional.
UpdateEventCourseRegistrationInput.courseRegistrationId ● ID! non-null scalar
The identifier of the course registration.
UpdateEventCourseRegistrationInput.customFields ● [CustomFieldInput!] list input
The custom fields to create or update for the course registration. Optional.
UpdateEventCourseRegistrationInput.dateTime ● DateTime scalar
The date and time that the course registration occurred. Optional.
UpdateEventCourseRegistrationInput.discountCodeId ● ID scalar
The identifier of the discount code to apply to the course registration. Optional.
UpdateEventCourseRegistrationInput.eventId ● ID! non-null scalar
The identifier of the event the course registration is associated with.
UpdateEventCourseRegistrationInput.grade ● String scalar
The grade the attendee received for the course. Optional.
UpdateEventCourseRegistrationInput.itineraryConfiguration ● CourseRegistrationItineraryConfigurationInput input
The itinerary configuration for this course registration. Optional.
UpdateEventCourseRegistrationInput.paymentDetails ● UpdatePaymentDetailsInput input
The payment details for the course registration. Optional.
UpdateEventCourseRegistrationInput.score ● NonNegativeFloat scalar
The score the attendee received for the course. Optional.
UpdateEventCourseRegistrationInput.tickets ● PositiveInt scalar
The number of tickets to register. Optional.
Member Of
updateEventCourseRegistration mutation