MembershipContactStoreFunction
Functions allow the organization and management of any group activities, meals, etc. in a membership contact store.
type MembershipContactStoreFunction {
attendances(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreFunctionAttendance!]!
backgroundColor: HexColorCode
checkInViaOrganizerAppEnabled: Boolean!
checkOutViaOrganizerAppEnabled: Boolean!
comment: String
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
date: LocalDate
details: String
doNotPublishToAttendeeApp: Boolean!
doNotPublishToEventWebsite: Boolean!
doNotPublishToMyAgenda: Boolean!
doNotPublishToOnAir: Boolean!
end: LocalTime
endsOnNextDay: Boolean!
expectedAttendees: Int
feeTypes(
input: FunctionFeeTypeSearchFilterInput! = [object Object]
): [FunctionFeeType!]!
foodAndBeverage: String
functionRegistrations(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreFunctionRegistration!]!
group: FunctionGroup!
guestType: FunctionGuestType!
id: ID!
inventoryLimit: PositiveInt
lastModifiedAt: DateTime!
lastModifiedBy: String
location: Location
name: String!
overview: String
roomSetup: String
showBoldTitle: Boolean!
start: LocalTime
textColor: HexColorCode
tracks: [Track!]!
uniqueCode: String
}
Fields
MembershipContactStoreFunction.attendances
● [MembershipContactStoreFunctionAttendance!]!
non-null object
A list of attendances for this function.
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
).
MembershipContactStoreFunction.attendances.limit
● PaginationLimit!
non-null scalar
MembershipContactStoreFunction.attendances.offset
● NonNegativeInt!
non-null scalar
MembershipContactStoreFunction.backgroundColor
● HexColorCode
scalar
The hex color code to use for the background when rendering the function in the agenda. Optional.
MembershipContactStoreFunction.checkInViaOrganizerAppEnabled
● Boolean!
non-null scalar
A flag indicating whether check in for the function is enabled via scanning in the Organizer App.
MembershipContactStoreFunction.checkOutViaOrganizerAppEnabled
● Boolean!
non-null scalar
A flag indicating whether check out for the function is enabled via scanning in the Organizer App.
MembershipContactStoreFunction.comment
● String
scalar
A UTF-8 string comment for the function. Optional.
MembershipContactStoreFunction.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
MembershipContactStoreFunction.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
MembershipContactStoreFunction.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this function.
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
).
MembershipContactStoreFunction.customFields.input
● CustomFieldSearchFilterInput!
non-null input
MembershipContactStoreFunction.customFields.limit
● PaginationLimit!
non-null scalar
MembershipContactStoreFunction.customFields.offset
● NonNegativeInt!
non-null scalar
MembershipContactStoreFunction.date
● LocalDate
scalar
The date the function will occur. Optional.
MembershipContactStoreFunction.details
● String
scalar
A UTF-8 string that provides a description of the function. It is not displayed publicly and is intended to be used by event organizers. Optional.
MembershipContactStoreFunction.doNotPublishToAttendeeApp
● Boolean!
non-null scalar
A flag indicating whether the function should not be published in the agenda on the Attendee App.
MembershipContactStoreFunction.doNotPublishToEventWebsite
● Boolean!
non-null scalar
A flag indicating whether the function should not be published in the agenda on the Event Website.
MembershipContactStoreFunction.doNotPublishToMyAgenda
● Boolean!
non-null scalar
A flag indicating whether the function should not be published in the agenda in My Agenda.
MembershipContactStoreFunction.doNotPublishToOnAir
● Boolean!
non-null scalar
A flag indicating whether the function should not be published in the agenda on OnAir.
MembershipContactStoreFunction.end
● LocalTime
scalar
The time the function will end. Optional.
MembershipContactStoreFunction.endsOnNextDay
● Boolean!
non-null scalar
A flag indicating whether the function ends on the next day.
MembershipContactStoreFunction.expectedAttendees
● Int
scalar
The number of attendees expected for the function. Optional.
MembershipContactStoreFunction.feeTypes
● [FunctionFeeType!]!
non-null object
A list of fee types associated with this function.
See FunctionFeeTypeSearchFilterInput
for details on how the optional input
argument can be used to filter functions.
MembershipContactStoreFunction.feeTypes.input
● FunctionFeeTypeSearchFilterInput!
non-null input
MembershipContactStoreFunction.foodAndBeverage
● String
scalar
A UTF-8 string detailing the food and beverage for the function. Optional.
MembershipContactStoreFunction.functionRegistrations
● [MembershipContactStoreFunctionRegistration!]!
non-null object
A list of registrations for this function.
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
).
MembershipContactStoreFunction.functionRegistrations.limit
● PaginationLimit!
non-null scalar
MembershipContactStoreFunction.functionRegistrations.offset
● NonNegativeInt!
non-null scalar
MembershipContactStoreFunction.group
● FunctionGroup!
non-null object
The function group this function belongs to.
MembershipContactStoreFunction.guestType
● FunctionGuestType!
non-null enum
The guest type for for the function.
MembershipContactStoreFunction.id
● ID!
non-null scalar
The unique identifier for a function.
MembershipContactStoreFunction.inventoryLimit
● PositiveInt
scalar
The inventory limit for this function. Optional.
MembershipContactStoreFunction.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
MembershipContactStoreFunction.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
MembershipContactStoreFunction.location
● Location
object
The location for the function. Optional.
MembershipContactStoreFunction.name
● String!
non-null scalar
A UTF-8 string representing the name of a function.
MembershipContactStoreFunction.overview
● String
scalar
A UTF-8 string that provides a brief overview of the function. Optional.
MembershipContactStoreFunction.roomSetup
● String
scalar
A UTF-8 string detailing the room setup for an function such as information about seating, podium and other room layout options. Optional.
MembershipContactStoreFunction.showBoldTitle
● Boolean!
non-null scalar
A Boolean value indicating whether the title should be bold when rendering the function in the agenda. false
by default.
MembershipContactStoreFunction.start
● LocalTime
scalar
The time the function will start. Optional.
MembershipContactStoreFunction.textColor
● HexColorCode
scalar
The hex color code to use when rendering the function's text in the agenda. Optional.
MembershipContactStoreFunction.tracks
● [Track!]!
non-null object
The tracks associated with the function.
If a function is allocated to a single track, the single track will be returned. If a function spans multiple tracks, all tracks that it spans will be returned.
MembershipContactStoreFunction.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the function. Optional.
The value must be unique across all functions for an event.
Member Of
MembershipContactStoreFunctionRegistration
object ● MembershipContactStoreFunctionSetup
object