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

com.mparticle.sdk.model.eventprocessing.UserIdentityChangeEvent Maven / Gradle / Ivy

package com.mparticle.sdk.model.eventprocessing;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public final class UserIdentityChangeEvent extends Event {

    @JsonProperty("added")
    private List added;

    @JsonProperty("removed")
    private List removed;

    public List getAdded() {
        return added;
    }

    public void setAdded(List added) {
        this.added = added;
    }

    public List getRemoved() {
        return removed;
    }

    public void setRemoved(List removed) {
        this.removed = removed;
    }

    public UserIdentityChangeEvent() {
        super(Type.USER_IDENTITY_CHANGE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy