OBJECT

VendorConsentStatus

VendorConsentStatus is the consent status of each vendor.

link GraphQL Schema definition

1type VendorConsentStatus {
2
3# User consentStatus for this 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 the consent settings page.
11isVisible: Boolean!
12
13# Vendor name.
14name: VendorName!
15
16}