OBJECT

NonTCFCookieVendor

GDPR cookie vendors for vendors that dont support TCF strings, for a user.

link GraphQL Schema definition

1type NonTCFCookieVendor {
2
3# User content status for each vendor.
4consentStatus: ConsentStatus!
5
6# If it’s an advertising, analytics, or essential cookie.
7cookieVendorType: CookieVendorType!
8
9# A flag that shows if the consent is given by the user or by consent service as
10# default value.
11hasUserSetConsent: Boolean!
12
13# A flag that shows if the vendor should be visible to management page.
14isVisible: Boolean!
15
16# Vendor name.
17name: VendorName!
18
19# Url to the Vendor's privacy policy.
20policyURL: String!
21
22}