CeContactStoreFunctionRegistration
Function registration encapsulates information about the attendee and the options selected when registering to attend the function in a continuing education contact store.
type CeContactStoreFunctionRegistration {
contact: CeContactStoreContact!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
fee: Fee!
feeType: FunctionFeeType!
function: CeContactStoreFunction!
guests: [CeContactStoreFunctionGuest!]!
id: ID!
isGroupInventory: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
paymentDetails: FunctionRegistrationPaymentDetails!
tickets: PositiveInt!
}
Fields
CeContactStoreFunctionRegistration.contact
● CeContactStoreContact!
non-null object
The contact who registered.
CeContactStoreFunctionRegistration.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
CeContactStoreFunctionRegistration.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
CeContactStoreFunctionRegistration.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this function registration.
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
).
CeContactStoreFunctionRegistration.customFields.input
● CustomFieldSearchFilterInput!
non-null input
CeContactStoreFunctionRegistration.customFields.limit
● PaginationLimit!
non-null scalar
CeContactStoreFunctionRegistration.customFields.offset
● NonNegativeInt!
non-null scalar
CeContactStoreFunctionRegistration.fee
● Fee!
non-null object
The fee including both the amount and currency.
CeContactStoreFunctionRegistration.feeType
● FunctionFeeType!
non-null object
The fee type that applied to the function registration.
CeContactStoreFunctionRegistration.function
● CeContactStoreFunction!
non-null object
The function this function registration pertains to.
CeContactStoreFunctionRegistration.guests
● [CeContactStoreFunctionGuest!]!
non-null object
A list of function guests.
CeContactStoreFunctionRegistration.id
● ID!
non-null scalar
The unique identifier for a function registration.
CeContactStoreFunctionRegistration.isGroupInventory
● Boolean!
non-null scalar
A flag indicating whether the function registration is inventory being held for a group on a Group Co-ordinator.
CeContactStoreFunctionRegistration.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
CeContactStoreFunctionRegistration.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
CeContactStoreFunctionRegistration.paymentDetails
● FunctionRegistrationPaymentDetails!
non-null object
The payment details for the registration.
CeContactStoreFunctionRegistration.tickets
● PositiveInt!
non-null scalar
The number of tickets registered.
Member Of
CancelCeContactStoreFunctionRegistrationPayload
object ● CeContactStore
object ● CeContactStoreContact
object ● CeContactStoreFunction
object ● CreateCeContactStoreFunctionRegistrationPayload
object ● RestoreCeContactStoreFunctionRegistrationPayload
object ● UpdateCeContactStoreFunctionRegistrationPayload
object ● UpdateCeContactStoreFunctionRegistrationStatusPayload
object