MembershipRegistration
Defines a membership registration associated with a contact in EventsAir.
type MembershipRegistration {
category: MembershipCategory!
comment: String
contact: Contact!
createdAt: DateTime!
createdBy: String
feeType: MembershipFeeType!
id: ID!
isActive: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
membershipEndDate: LocalDate
membershipStartDate: LocalDate
paymentEndDate: LocalDate
paymentStartDate: LocalDate
}
Fields
MembershipRegistration.category
● MembershipCategory!
non-null object
The membership category of the membership registration.
MembershipRegistration.comment
● String
scalar
The comment associated with the membership registration. Optional.
MembershipRegistration.contact
● Contact!
non-null object
The contact associated with the membership registration.
MembershipRegistration.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
MembershipRegistration.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MembershipRegistration.feeType
● MembershipFeeType!
non-null object
The membership fee type of the membership registration.
MembershipRegistration.id
● ID!
non-null scalar
The unique identifier for a membership registration.
MembershipRegistration.isActive
● Boolean!
non-null scalar
The flag indicating if the membership registration is active or canceled.
MembershipRegistration.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
MembershipRegistration.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
MembershipRegistration.membershipEndDate
● LocalDate
scalar
The membership end date of a recurring membership registration. Optional.
MembershipRegistration.membershipStartDate
● LocalDate
scalar
The membership start date of a recurring membership registration. Optional.
MembershipRegistration.paymentEndDate
● LocalDate
scalar
The payment end date of a recurring membership registration. Optional.
MembershipRegistration.paymentStartDate
● LocalDate
scalar
The payment start date of a recurring membership registration. Optional.
Member Of
CreateMembershipRegistrationPayload
object ● MembershipContactStoreContact
object ● UpdateMembershipRegistrationPayload
object