Skip to main content

EventMarketingSetup

Defines the settings for marketing tags within the scope of an event.

type EventMarketingSetup {
groups(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingGroup!]!
tags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingTag!]!
}

Fields

EventMarketingSetup.groups ● [EventMarketingGroup!]! non-null object

A list of marketing groups defined for an event.

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).
EventMarketingSetup.groups.limit ● PaginationLimit! non-null scalar
EventMarketingSetup.groups.offset ● NonNegativeInt! non-null scalar

EventMarketingSetup.tags ● [EventMarketingTag!]! non-null object

A list of marketing tags defined for an event.

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).
EventMarketingSetup.tags.limit ● PaginationLimit! non-null scalar
EventMarketingSetup.tags.offset ● NonNegativeInt! non-null scalar

Member Of

EventSetup object