UTM

Info
Add parameters to identify the campaigns that directs traffic.

This feature can be used in a few ways:


```java
    OcambaHoood.getInstance().setUtm("key", "value"); 
    //we will create “key” key with value “value“ in sdk storage
```
```java
    OcambaHoood.getInstance().getUtm("key");
    //we will return value of key “key” from sdk storage
```
```java
    OcambaHoood.getInstance().removeUtm("key");
    //key “key” replace will be removed from sdk storage
```
Info
NOTE: change “key” and “value” to specific strings. Use this before or just after init function.
On This Page