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
creditHours: Float!
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
fees: [Fee!]!
id: ID!
incomeAccount: Account!
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.creditHours ● Float! non-null scalar
The number of credit hours for the function fee type.
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:
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.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.