Skip to main content

CeContactStoreFunctionSetup

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

type CeContactStoreFunctionSetup {
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
): [CeContactStoreFunction!]!
}

Fields

CeContactStoreFunctionSetup.discountCodes ● [FunctionDiscountCode!]! non-null object

A list of function registration discount codes defined for this continuing education 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).
CeContactStoreFunctionSetup.discountCodes.limit ● PaginationLimit! non-null scalar
CeContactStoreFunctionSetup.discountCodes.offset ● NonNegativeInt! non-null scalar

CeContactStoreFunctionSetup.functionGroups ● [FunctionGroup!]! non-null object

The function groups for this continuing education 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).
CeContactStoreFunctionSetup.functionGroups.limit ● PaginationLimit! non-null scalar
CeContactStoreFunctionSetup.functionGroups.offset ● NonNegativeInt! non-null scalar

CeContactStoreFunctionSetup.functions ● [CeContactStoreFunction!]! non-null object

The functions for this continuing education 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).
CeContactStoreFunctionSetup.functions.input ● FunctionSearchFilterInput! non-null input
CeContactStoreFunctionSetup.functions.limit ● PaginationLimit! non-null scalar
CeContactStoreFunctionSetup.functions.offset ● NonNegativeInt! non-null scalar

Member Of

CeContactStoreSetup object