com.mparticle.sdk.model.eventprocessing.consent.ConsentState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
mParticle Java SDK used to integrate with mParticle's Firehose API
package com.mparticle.sdk.model.eventprocessing.consent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
public final class ConsentState {
@JsonProperty("gdpr_consent_state")
private Map GDPR;
public Map getGDPR() {
return GDPR;
}
public void setGDPR(Map GDPR) {
this.GDPR = GDPR;
}
}