com.mparticle.sdk.model.eventprocessing.UserIdentityChangeEvent 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;
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);
}
}