EventsAirMembershipRegistration
Represents a membership registration associated with a contact for an EventsAir membership store.
type EventsAirMembershipRegistration implements MembershipRegistration {
category: MembershipCategory!
comment: String
contact: Contact!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
fee: Fee!
feeType: MembershipFeeType!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
membershipEndDate: LocalDate
membershipStartDate: LocalDate
paymentDetails: MembershipRegistrationPaymentDetails!
paymentEndDate: LocalDate
paymentStartDate: LocalDate
type: MembershipRegistrationType!
}
Fields
EventsAirMembershipRegistration.category ● MembershipCategory! non-null object
The membership category of the membership registration.
EventsAirMembershipRegistration.comment ● String scalar
The comment associated with the membership registration. Optional.
EventsAirMembershipRegistration.contact ● Contact! non-null object
The contact associated with the membership registration.
EventsAirMembershipRegistration.createdAt ● DateTime! non-null scalar
The date and time the record was created.
EventsAirMembershipRegistration.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
EventsAirMembershipRegistration.customFields ● [CustomField!]! non-null object
A list of custom field values associated with this membership registration.
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).
EventsAirMembershipRegistration.customFields.input ● CustomFieldSearchFilterInput! non-null input
EventsAirMembershipRegistration.customFields.limit ● PaginationLimit! non-null scalar
EventsAirMembershipRegistration.customFields.offset ● NonNegativeInt! non-null scalar
EventsAirMembershipRegistration.fee ● Fee! non-null object
The fee includes both the amount and currency.
EventsAirMembershipRegistration.feeType ● MembershipFeeType! non-null interface
The membership fee type of the membership registration.
EventsAirMembershipRegistration.id ● ID! non-null scalar
The unique identifier for a membership registration.
EventsAirMembershipRegistration.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
EventsAirMembershipRegistration.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
EventsAirMembershipRegistration.membershipEndDate ● LocalDate scalar
The membership end date of a recurring membership registration. Optional.
EventsAirMembershipRegistration.membershipStartDate ● LocalDate scalar
The membership start date of a recurring membership registration. Optional.
EventsAirMembershipRegistration.paymentDetails ● MembershipRegistrationPaymentDetails! non-null object
The payment details for the membership registration.
EventsAirMembershipRegistration.paymentEndDate ● LocalDate scalar
The payment end date of a recurring membership registration. Optional.
EventsAirMembershipRegistration.paymentStartDate ● LocalDate scalar
The payment start date of a recurring membership registration. Optional.
EventsAirMembershipRegistration.type ● MembershipRegistrationType! non-null enum
A value indicating the type of the membership registration item.
Interfaces
MembershipRegistration interface
Represents a membership registration associated with a contact in EventsAir.