UpdateMembershipContactStoreCourseFeeTypeInput
Defines the input for updating a course fee type in a membership contact store.
input UpdateMembershipContactStoreCourseFeeTypeInput {
  additionalPaymentStatuses: [AdditionalPaymentStatus!]
  amount: NonNegativeFloat
  comment: String
  courseFeeTypeId: ID!
  courseId: ID!
  customFields: [CustomFieldInput!]
  inventory: UpdateCourseFeeTypeInventoryInput
  membershipContactStoreId: ID!
  minimumAttendance: NonNegativeInt
  name: String
  uniqueCode: String
}
Fields
UpdateMembershipContactStoreCourseFeeTypeInput.additionalPaymentStatuses ● [AdditionalPaymentStatus!] list enum
The additional valid payment statuses for this course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.amount ● NonNegativeFloat scalar
The amount for this course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.comment ● String scalar
The comments for this course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.courseFeeTypeId ● ID! non-null scalar
The identifier of the course fee type.
UpdateMembershipContactStoreCourseFeeTypeInput.courseId ● ID! non-null scalar
The identifier of the course the course fee type is associated with.
UpdateMembershipContactStoreCourseFeeTypeInput.customFields ● [CustomFieldInput!] list input
The custom fields to create or update for this course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.inventory ● UpdateCourseFeeTypeInventoryInput input
The inventory for this course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.membershipContactStoreId ● ID! non-null scalar
The identifier of the membership contact store the course fee type is associated with.
UpdateMembershipContactStoreCourseFeeTypeInput.minimumAttendance ● NonNegativeInt scalar
The minimum attendance allowed for this course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.name ● String scalar
A UTF-8 string representing the name of the course fee type. Optional.
UpdateMembershipContactStoreCourseFeeTypeInput.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.