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 {
cancelationTaxes: [TaxItem!]!
createdAt: DateTime!
createdBy: String
creditHours: Float!
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]! @deprecated
customFieldsPaged(
filterInput: CustomFieldAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): CustomFieldPage!
fees: [Fee!]!
id: ID!
incomeAccount: Account!
inventory: FunctionFeeTypeInventory!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
paymentStatuses: [PaymentStatus!]!
taxes: [TaxItem!]!
uniqueCode: String
visibleForMemberTypes: VisibleForMemberTypes
}
Fields
FunctionFeeType.cancelationTaxes ● [TaxItem!]! non-null object
The list of taxes that apply to a cancelation fee for the function fee type.
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.creditHours ● Float! non-null scalar
The number of credit hours for the function fee type.
FunctionFeeType.customFields ● [CustomField!]! deprecated non-null object
Use customFieldsPaged instead. It returns the same custom fields together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.
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:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
FunctionFeeType.customFields.input ● CustomFieldSearchFilterInput! non-null input
FunctionFeeType.customFields.limit ● PaginationLimit! non-null scalar
FunctionFeeType.customFields.offset ● NonNegativeInt! non-null scalar
FunctionFeeType.customFieldsPaged ● CustomFieldPage! non-null object
Custom fields associated with this record that match the filter criteria specified in the optional
filterInput argument, returned together with pagination metadata.
See CustomFieldAdvancedSearchFilterInput
for details on how the filterInput argument can be used. The filter supports both inclusion and
exclusion semantics (eq, ne, in, notIn).
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
Throws an error with code:
BAD_USER_INPUTif all fields in thefilterInputargument have a combined total number of values exceeding 1,000.
FunctionFeeType.customFieldsPaged.filterInput ● CustomFieldAdvancedSearchFilterInput! non-null input
FunctionFeeType.customFieldsPaged.limit ● PaginationLimit! non-null scalar
FunctionFeeType.customFieldsPaged.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.incomeAccount ● Account! non-null object
The income account for the function 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.taxes ● [TaxItem!]! non-null object
The list of taxes that apply to a fee for the 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.
FunctionFeeType.visibleForMemberTypes ● VisibleForMemberTypes object
The member types the function fee type is visible for. Optional.
Only applies for an event that is linked to a membership contact store.
Member Of
CeContactStoreFunction object ● CeContactStoreFunctionRegistration object ● CreateFunctionFeeTypePayload object ● Function object ● FunctionDiscountCodeApplicability object ● FunctionRegistration object ● MembershipContactStoreFunction object ● MembershipContactStoreFunctionRegistration object ● UpdateFunctionFeeTypePayload object