OBJECT

TCFCookieVendor

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

link GraphQL Schema definition

1type TCFCookieVendor {
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# List of features this vendor uses.
10features: [ConsentFeature!]
11
12# A flag that shows if the consent is given by the user or by consent service as
13# default value.
14hasUserSetConsent: Boolean!
15
16# A flag that shows if the vendor should be visible to management page.
17isVisible: Boolean!
18
19# Vendor name.
20name: VendorName!
21
22# Url to the Vendor's privacy policy.
23policyURL: String!
24
25# List of purposes this vendor uses.
26purposes: [ConsentPurpose!]
27
28# List of special features this vendor uses.
29specialFeatures: [ConsentSpecialFeature!]
30
31# List of special purposes this vendor uses.
32specialPurposes: [ConsentSpecialPurpose!]
33
34}