INPUT_OBJECT

SetDropCampaignAccessInput

SetDropCampaignAccessInput has fields required to update a campaign's access.

link GraphQL Schema definition

1input SetDropCampaignAccessInput {
4
2# A list of channels that are allowed for this campaign.
3allowedChannels: [ID!]
7
5# A list of channels that are blocked from this campaign.
6blockedChannels: [ID!]
10
8# The campaign ID.
9campaignID: ID!
14
11# Is the allowedChannels list in effect. Just having allowedChannels present does
12# not mean the access list should be enabled.
13isAllowedChannelsEnabled: Boolean!
18
15# Is the blockedChannels list in effect. Just having blockedChannels present does
16# not mean the block list should be enabled.
17isBlockedChannelsEnabled: Boolean!
22
19# A list of users that are able to view this campaign and functionalities while
20# the campaign is in the testing state.
21testViewers: [ID!]
23}