Skip to main content

MembershipContactStoreFunctionSetup

Defines the settings for functions for a continuing education contact store in EventsAir.

type MembershipContactStoreFunctionSetup {
discountCodes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionDiscountCode!]!
functionGroups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [FunctionGroup!]!
functions(
input: FunctionSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreFunction!]!
preferences: FunctionPreferences!
}

Fields​

MembershipContactStoreFunctionSetup.discountCodes ● [FunctionDiscountCode!]! non-null object​

A list of function registration discount codes defined for this membership contact store.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
MembershipContactStoreFunctionSetup.discountCodes.limit ● PaginationLimit! non-null scalar​
MembershipContactStoreFunctionSetup.discountCodes.offset ● NonNegativeInt! non-null scalar​

MembershipContactStoreFunctionSetup.functionGroups ● [FunctionGroup!]! non-null object​

The function groups for this membership contact store.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
MembershipContactStoreFunctionSetup.functionGroups.limit ● PaginationLimit! non-null scalar​
MembershipContactStoreFunctionSetup.functionGroups.offset ● NonNegativeInt! non-null scalar​

MembershipContactStoreFunctionSetup.functions ● [MembershipContactStoreFunction!]! non-null object​

The functions for this membership contact store ordered by date (ascending), then by start time (ascending).

See FunctionSearchFilterInput for details on how the optional input argument can be used to filter functions.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
MembershipContactStoreFunctionSetup.functions.input ● FunctionSearchFilterInput! non-null input​
MembershipContactStoreFunctionSetup.functions.limit ● PaginationLimit! non-null scalar​
MembershipContactStoreFunctionSetup.functions.offset ● NonNegativeInt! non-null scalar​

MembershipContactStoreFunctionSetup.preferences ● FunctionPreferences! non-null object​

The configuration preferences for functions.

Member Of​

MembershipContactStoreSetup object