UpdateRegistrationTypeInput
Defines the input for updating a registration type.
input UpdateRegistrationTypeInput {
additionalPaymentStatuses: [AdditionalPaymentStatus!]
allowsVirtualAttendees: Boolean
alternateCurrencyFees: [AlternateCurrencyFeeInput!]
creditHours: Float
customFields: [CustomFieldInput!]
defaultFee: FeeInput
eventId: ID!
eventPackageId: ID
incomeAccountId: ID
inventory: RegistrationTypeInventoryInput
isAccompanyingPersonRegistration: Boolean
name: String
registrationGroupId: ID
registrationTypeId: ID!
uniqueCode: String
}
Fields
UpdateRegistrationTypeInput.additionalPaymentStatuses
● [AdditionalPaymentStatus!]
list enum
The additional valid payment statuses for this registration type. Optional.
UpdateRegistrationTypeInput.allowsVirtualAttendees
● Boolean
scalar
A flag indicating whether this registration type allows attendees to attend virtually. Optional.
UpdateRegistrationTypeInput.alternateCurrencyFees
● [AlternateCurrencyFeeInput!]
list input
The collection of fees in alternate currencies for this registration type. Optional.
UpdateRegistrationTypeInput.creditHours
● Float
scalar
The number of credit hours for the registration type. Optional.
UpdateRegistrationTypeInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for this registration type. Optional.
UpdateRegistrationTypeInput.defaultFee
● FeeInput
input
The fee charged for this registration type in the event currency. Optional.
UpdateRegistrationTypeInput.eventId
● ID!
non-null scalar
The identifier of the event the registration type is associated with.
UpdateRegistrationTypeInput.eventPackageId
● ID
scalar
The identifier of the event package to associate with the registration type. Optional.
UpdateRegistrationTypeInput.incomeAccountId
● ID
scalar
The identifier of the income account for this registration type. Optional.
UpdateRegistrationTypeInput.inventory
● RegistrationTypeInventoryInput
input
The inventory for this registration type. Optional.
UpdateRegistrationTypeInput.isAccompanyingPersonRegistration
● Boolean
scalar
A flag indicating whether the registration type is for an accompanying person/spouse/partner. Optional.
UpdateRegistrationTypeInput.name
● String
scalar
A UTF-8 string representing the name of the registration type. Optional.
UpdateRegistrationTypeInput.registrationGroupId
● ID
scalar
The identifier of the registration group the registration type is associated with. Optional.
UpdateRegistrationTypeInput.registrationTypeId
● ID!
non-null scalar
The identifier for the registration type. Required.
UpdateRegistrationTypeInput.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the registration type. Optional.
The value must be unique across all registration types for an event.
Member Of
updateRegistrationType
mutation