Skip to main content

CreateEventCourseFeeTypeInput

Defines the input for creating a course fee type in an event.

input CreateEventCourseFeeTypeInput {
additionalPaymentStatuses: [AdditionalPaymentStatus!]
amount: NonNegativeFloat!
comment: String
courseId: ID!
customFields: [CustomFieldInput!]
eventId: ID!
inventory: CreateCourseFeeTypeInventoryInput!
minimumAttendance: NonNegativeInt
name: String!
uniqueCode: String
}

Fields

CreateEventCourseFeeTypeInput.additionalPaymentStatuses ● [AdditionalPaymentStatus!] list enum

The additional valid payment statuses for this course fee type. Optional.

CreateEventCourseFeeTypeInput.amount ● NonNegativeFloat! non-null scalar

The amount for this course fee type.

CreateEventCourseFeeTypeInput.comment ● String scalar

The comments for this course fee type. Optional.

CreateEventCourseFeeTypeInput.courseId ● ID! non-null scalar

The identifier of the course the course fee type is associated with.

CreateEventCourseFeeTypeInput.customFields ● [CustomFieldInput!] list input

The custom fields to create for this course fee type. Optional.

CreateEventCourseFeeTypeInput.eventId ● ID! non-null scalar

The identifier of the event the course fee type is associated with.

CreateEventCourseFeeTypeInput.inventory ● CreateCourseFeeTypeInventoryInput! non-null input

The inventory for this course fee type.

CreateEventCourseFeeTypeInput.minimumAttendance ● NonNegativeInt scalar

The minimum attendance allowed for this course fee type. Optional.

CreateEventCourseFeeTypeInput.name ● String! non-null scalar

A UTF-8 string representing the name of the course fee type.

CreateEventCourseFeeTypeInput.uniqueCode ● String scalar

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

The value must be unique across all course fee types for a course.

Member Of

createEventCourseFeeType mutation