OBJECT
VendorConsentStatus
VendorConsentStatus is the consent status of each vendor.
link GraphQL Schema definition
1 type VendorConsentStatus { 2 3 # User consentStatus for this vendor. 4 : ConsentStatus! 5 6 # A flag that shows if the consent is given by the user or by consent service as 7 # default value. 8 : Boolean! 9 10 # A flag that shows if the vendor should be visible to the consent settings page. 11 : Boolean! 12 13 # Vendor name. 14 : VendorName! 15 16 }