All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mparticle.sdk.model.eventprocessing.consent.ConsentState Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy