INPUT_OBJECT

SetDropCampaignSummaryInput

SetDropCampaignSummaryInput has fields required to update a campaign summary.

link GraphQL Schema definition

1input SetDropCampaignSummaryInput {
4
2# The redirect URL where a user can link their account.
3accountLinkURL: String!
7
5# The campaign ID.
6campaignID: ID!
11
8# The type of a campaign defines what type of drops are allowed to be added to the
9# campaign.
10campaignType: CampaignType
14
12# The description of this campaign.
13description: String!
17
15# The URL that links to the details / marketing page for this drop.
16detailsURL: String!
20
18# The date at which this campaign ends and all contained drops end at the latest.
19endAt: Time!
23
21# The game associated with this campaign.
22gameID: ID!
26
24# The name of the campaign.
25name: String!
30
27# This is the Organization ID (RBAC) to determine access / ownership of the
28# campaign and attached drops.
29ownerID: ID!
34
31# The date at which this campaign starts and all contained drops start the
32# earliest.
33startAt: Time!
35}