From a16d3292fe97a5f101a8cc5e12d7f5509408e4e4 Mon Sep 17 00:00:00 2001 From: giraldogdiego Date: Tue, 12 Mar 2024 17:36:48 -0500 Subject: [PATCH] Update docs with new methods --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 19a922d..8ae37dd 100644 --- a/README.md +++ b/README.md @@ -688,6 +688,13 @@ BaseTenjin instance = Tenjin.getInstance(""); instance.SetGoogleDMAParameters(adPersonalization, adUserData); ``` +To explicitly manage the collection of Google DMA parameters, you have the flexibility to opt in or opt out at any time. While the default setting is to opt in, you can easily adjust your preferences using the OptInGoogleDMA or OptOutGoogleDMA methods, ensuring full control over your data privacy settings: + +```csharp +instance.OptInGoogleDMA(); +instance.OptOutGoogleDMA(); +``` + ## Retry/cache events and IAP You can enable/disable retrying and caching events and IAP when requests fail or users don't have internet connection. These events will be sent after a new event has been added to the queue and user has recovered connection.