INPUT_OBJECT

AddDropToCampaignInput

AddDropToCampaignInput has fields required to create a drop within a campaign.

link GraphQL Schema definition

1input AddDropToCampaignInput {
4
2# The campaign this drop belongs to.
3campaignID: ID!
7
5# The type of rule defining what needs to happen to trigger this drop.
6dropRuleType: DropRuleType!
11
8# The date at which this drop can no longer occur. Default to campaign endDate if
9# not provided.
10endAt: Time
14
12# The friendly name of this drop.
13name: String!
18
15# The date at which this drop can start to occur. Default to campaign startDate if
16# not provided.
17startAt: Time
19}