CreateMembershipContactStoreCourseFeeTypeInput
Defines the input for creating a course fee type in a membership contact store.
input CreateMembershipContactStoreCourseFeeTypeInput {
additionalPaymentStatuses: [AdditionalPaymentStatus!]
alternateCurrencyFees: [AlternateCurrencyFeeInput!]
amount: NonNegativeFloat @deprecated
cancelationTaxes: [TaxItemInput!]
comment: String
courseId: ID!
customFields: [CustomFieldInput!]
defaultFee: FeeInput
inventory: CreateCourseFeeTypeInventoryInput!
membershipContactStoreId: ID!
minimumAttendance: NonNegativeInt
name: String!
taxes: [TaxItemInput!]
uniqueCode: String
}
Fields
CreateMembershipContactStoreCourseFeeTypeInput.additionalPaymentStatuses ● [AdditionalPaymentStatus!] list enum
The additional valid payment statuses for this course fee type. Optional.
CreateMembershipContactStoreCourseFeeTypeInput.alternateCurrencyFees ● [AlternateCurrencyFeeInput!] list input
The collection of fees in alternate currencies for the course fee type. Optional.
CreateMembershipContactStoreCourseFeeTypeInput.amount ● NonNegativeFloat deprecated scalar
Use defaultFee and alternateCurrencyFees instead. This input will be removed in a future release.
The amount for this course fee type. Optional.
CreateMembershipContactStoreCourseFeeTypeInput.cancelationTaxes ● [TaxItemInput!] list input
The collection of taxes for the cancelation fee for the course fee type. Optional.
Defaults to the default taxes for the membership contact store.
CreateMembershipContactStoreCourseFeeTypeInput.comment ● String scalar
The comments for this course fee type. Optional.
CreateMembershipContactStoreCourseFeeTypeInput.courseId ● ID! non-null scalar
The identifier of the course the course fee type is associated with.
CreateMembershipContactStoreCourseFeeTypeInput.customFields ● [CustomFieldInput!] list input
The custom fields to create for this course fee type. Optional.
CreateMembershipContactStoreCourseFeeTypeInput.defaultFee ● FeeInput input
The fee charged for this course fee type in the event currency. Optional.
Will default to 0.
CreateMembershipContactStoreCourseFeeTypeInput.inventory ● CreateCourseFeeTypeInventoryInput! non-null input
The inventory for this course fee type.
CreateMembershipContactStoreCourseFeeTypeInput.membershipContactStoreId ● ID! non-null scalar
The identifier of the membership contact store the course fee type is associated with.
CreateMembershipContactStoreCourseFeeTypeInput.minimumAttendance ● NonNegativeInt scalar
The minimum attendance allowed for this course fee type. Optional.
CreateMembershipContactStoreCourseFeeTypeInput.name ● String! non-null scalar
A UTF-8 string representing the name of the course fee type.
CreateMembershipContactStoreCourseFeeTypeInput.taxes ● [TaxItemInput!] list input
The collection of taxes for the course fee type. Optional.
Defaults to the default taxes for the membership contact store.
CreateMembershipContactStoreCourseFeeTypeInput.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.