
com.intellifylearning.models.Identify 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 Identify extends BasePayload {
@SuppressWarnings("unused")
private String action = "identify";
private Traits traits;
public Identify(String userId,
Traits traits,
DateTime timestamp,
Context context,
Callback callback) {
super(userId, timestamp, context, callback);
this.traits = traits;
}
public Traits getTraits() {
return traits;
}
public void setTraits(Traits traits) {
this.traits = traits;
}
/**
* @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