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

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

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;

    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;
    }

    public ScreenViewEvent() {
        super(Type.SCREEN_VIEW);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy