MembershipCategory
Represents a membership category.
type MembershipCategory {
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
feeTypes: [MembershipFeeType!]!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
uniqueCode: String
}
Fields
MembershipCategory.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
MembershipCategory.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MembershipCategory.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this membership category.
CustomField
s and CustomFieldDefinition
s 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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
MembershipCategory.customFields.input
● CustomFieldSearchFilterInput!
non-null input
MembershipCategory.customFields.limit
● PaginationLimit!
non-null scalar
MembershipCategory.customFields.offset
● NonNegativeInt!
non-null scalar
MembershipCategory.feeTypes
● [MembershipFeeType!]!
non-null object
A list of fee types associated with this membership category.
MembershipCategory.id
● ID!
non-null scalar
The unique identifier for a membership category.
MembershipCategory.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
MembershipCategory.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
MembershipCategory.name
● String!
non-null scalar
A UTF-8 string representing the name of the membership category.
MembershipCategory.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the membership category. Optional.
The value must be unique across all membership categories for an event.
Member Of
CreateMembershipCategoryPayload
object ● MembershipRegistration
object ● MembershipSetup
object ● UpdateMembershipCategoryPayload
object