CreateRegistrationTypeInput
Defines the input for creating a registration type.
input CreateRegistrationTypeInput {
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!
uniqueCode: String
}
Fields
CreateRegistrationTypeInput.additionalPaymentStatuses
● [AdditionalPaymentStatus!]
list enum
The additional valid payment statuses for this registration type. Optional.
CreateRegistrationTypeInput.allowsVirtualAttendees
● Boolean
scalar
A flag indicating whether this registration type allows attendees to attend virtually. Optional.
The default value is false
.
CreateRegistrationTypeInput.alternateCurrencyFees
● [AlternateCurrencyFeeInput!]
list input
The collection of fees in alternate currencies for this registration type. Optional.
CreateRegistrationTypeInput.creditHours
● Float
scalar
The number of credit hours for the registration type. Optional.
The default value is 0
.
CreateRegistrationTypeInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for this registration type. Optional.
CreateRegistrationTypeInput.defaultFee
● FeeInput
input
The fee charged for this registration type in the event currency. Optional.
CreateRegistrationTypeInput.eventId
● ID!
non-null scalar
The identifier of the event the registration type is associated with.
CreateRegistrationTypeInput.eventPackageId
● ID
scalar
The identifier of the event package to associate with the registration type. Optional.
CreateRegistrationTypeInput.incomeAccountId
● ID
scalar
The identifier of the income account for the registration type. Optional.
The value will default to the ID of the first income account in account number order.
CreateRegistrationTypeInput.inventory
● RegistrationTypeInventoryInput!
non-null input
The inventory for this registration type.
CreateRegistrationTypeInput.isAccompanyingPersonRegistration
● Boolean
scalar
A flag indicating whether the registration type is for an accompanying person/spouse/partner. Optional.
The default value is false
.
CreateRegistrationTypeInput.name
● String!
non-null scalar
A UTF-8 string representing the name of the registration type.
CreateRegistrationTypeInput.registrationGroupId
● ID!
non-null scalar
The identifier of the registration group the registration type is associated with.
CreateRegistrationTypeInput.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
createRegistrationType
mutation