Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HCD 523] Add campaign type comments #818

Merged
merged 1 commit into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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