OBJECT

CCPACookieVendor

CCPA cookie vendor for a user.

link GraphQL Schema definition

1type CCPACookieVendor {
2
3# User content status for each vendor.
4consentStatus: ConsentStatus!
5
6# A flag that shows if the consent is given by the user or by consent service as
7# default value.
8hasUserSetConsent: Boolean!
9
10# A flag that shows if the vendor should be visible to management page.
11isVisible: Boolean!
12
13# Vendor name.
14name: VendorName!
15
16}