com.mparticle.sdk.model.eventprocessing.ScreenViewEvent 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.Map;
public final class ScreenViewEvent extends Event {
@JsonProperty(value="screen_name", required=true)
private String screenName;
@JsonProperty("attributes")
private Map attributes;
@JsonProperty("custom_flags")
private Map customFlags;
public String getScreenName() {
return screenName;
}
public void setScreenName(String screenName) {
this.screenName = screenName;
}
public Map getAttributes() {
return attributes;
}
public void setAttributes(Map attributes) {
this.attributes = attributes;
}
/**
*
* @return custom flags map
*/
public Map getCustomFlags() { return customFlags; }
/**
*
* @param customFlags custom flags map
*/
public void setCustomFlags(Map customFlags) { this.customFlags = customFlags; }
public ScreenViewEvent() {
super(Type.SCREEN_VIEW);
}
}