From 207dbe407f321a0f96de83d945abc60c8b67eaeb Mon Sep 17 00:00:00 2001 From: Thomas Lay Date: Wed, 26 Jan 2022 12:40:32 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3faf512..9bc82a3 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,8 @@ To verify that a legal basis is established for a purpose or a vendor, use the f | IsVendorLIAllowed | int | Returns `true` if transparency for vendor id's legitimate interest is established and user didn't exercise their right to object | | IsVendorAllowedForPurposes | (int, ...int) | Returns `true` if user has given consent to vendor id processing all purposes ids and publisher hasn't set restrictions for them | | IsVendorAllowedForPurposesLI | (int, ...int) | Returns `true` if transparency for vendor id's legitimate interest is established for all purpose ids and publisher hasn't set restrictions for them | +| IsVendorAllowedForFlexiblePurposes | (int, ...int) | Returns `true` if user has given consent to vendor id processing all purposes ids or if transparency for its legitimate interest is established in accordance with publisher restrictions | +| IsVendorAllowedForFlexiblePurposesLI | (int, ...int) | Returns `true` if transparency for vendor id's legitimate interest is established for all purpose ids or if user has given consent in accordance with publisher restrictions | | GetPubRestrictionsForPurpose | int | Returns a list of publisher restrictions applied to purpose id | NOTE: For convenience the `CoreString` functions are also available from the `TCData` structure. @@ -194,4 +196,4 @@ func main() { fmt.Printf("user has given consent to publisher purpose 2") } } -``` \ No newline at end of file +```