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