Skip to main content

FunctionFeeType

Function fee types are the fee categories that are chosen when registering.

Many different function fee types can be created as required. For example:

  • Member Ticket
  • Spouse Ticket
type FunctionFeeType {
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
fees: [Fee!]!
id: ID!
inventory: FunctionFeeTypeInventory!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
paymentStatuses: [PaymentStatus!]!
uniqueCode: String
}

Fields

FunctionFeeType.createdAt ● DateTime! non-null scalar

The date and time the record was created.

FunctionFeeType.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

FunctionFeeType.customFields ● [CustomField!]! non-null object

A list of custom field values associated with this function fee type.

CustomFields and CustomFieldDefinitions can be matched through the definitionId and id fields, respectively.

See CustomFieldSearchFilterInput for details on how the optional input argument can be used to filter custom fields.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
FunctionFeeType.customFields.input ● CustomFieldSearchFilterInput! non-null input
FunctionFeeType.customFields.limit ● PaginationLimit! non-null scalar
FunctionFeeType.customFields.offset ● NonNegativeInt! non-null scalar

FunctionFeeType.fees ● [Fee!]! non-null object

The fees charged for this fee type. Each item in the collection represents the fee for a specific currency. If there is no charge, the collection will contain a single item that has an amount of zero. Only enabled fees will be returned.

FunctionFeeType.id ● ID! non-null scalar

The unique identifier for a fee type.

FunctionFeeType.inventory ● FunctionFeeTypeInventory! non-null object

The inventory for this Function fee type.

FunctionFeeType.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

FunctionFeeType.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

FunctionFeeType.name ● String! non-null scalar

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

FunctionFeeType.paymentStatuses ● [PaymentStatus!]! non-null enum

A list of valid payment statuses for this function fee type.

FunctionFeeType.uniqueCode ● String scalar

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

The value must be unique across all fee types for an event.

Member Of

Function object ● FunctionDiscountCodeApplicability object ● FunctionRegistration object