
com.intellifylearning.models.Track Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
package com.intellifylearning.models;
import org.joda.time.DateTime;
public class Track extends BasePayload {
@SuppressWarnings("unused")
private String action = "track";
private String event;
private EventProperties properties;
public Track(String userId,
String event,
EventProperties properties,
DateTime timestamp,
Context context,
Callback callback) {
super(userId, timestamp, context, callback);
this.event = event;
this.properties = properties;
}
public String getEvent() {
return event;
}
public void setEvent(String event) {
this.event = event;
}
public EventProperties getProperties() {
return properties;
}
public void setProperties(EventProperties properties) {
this.properties = properties;
}
/**
* @return the action
*/
public String getAction() {
return action;
}
/**
* @param action
* the action to set
*/
public void setAction(String action) {
this.action = action;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy