com.adjust.sdk.TrackingState Maven / Gradle / Ivy
package com.adjust.sdk;
public enum TrackingState {
OPTED_OUT(1);
private int value;
TrackingState(int value) {
this.value = value;
}
public int getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy