UTM
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
```