Skip to content

Commit

Permalink
[HCD 523] Add campaign type comments (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-win87 authored May 31, 2024
1 parent 362bc2b commit 5431540
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ Kotlin
messLanguage = MessageLanguage.ENGLISH // Optional, default ENGLISH
campaignsEnv = CampaignsEnv.PUBLIC // Optional, default PUBLIC
messageTimeout = 15000 // Optional, default 10000ms
+CampaignType.CCPA // See campaign table
+CampaignType.GDPR // See campaign table
+CampaignType.USNAT // Only include if campaign configured in portal. See campaign table
+CampaignType.GDPR // Only include if campaign configured in portal. See campaign table
}
```

Expand All @@ -90,8 +90,8 @@ Java
.addMessageLanguage(MessageLanguage.ENGLISH) // Optional, default ENGLISH
.addCampaignsEnv(CampaignsEnv.PUBLIC) // Optional, default PUBLIC
.addMessageTimeout(4000) // Optional, default 3000ms
.addCampaign(CampaignType.GDPR) //see campaign table
.addCampaign(CampaignType.CCPA) //see campaign table
.addCampaign(CampaignType.GDPR) //Only include if campaign configured in portal. See campaign table
.addCampaign(CampaignType.USNAT) //Only include if campaign configured in portal. See campaign table
.build();

```
Expand Down

0 comments on commit 5431540

Please sign in to comment.