com.hina.sdk.event.EventRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HinaCloudSDK Show documentation
Show all versions of HinaCloudSDK Show documentation
The official Java SDK of Hina Analytics
The newest version!
package com.hina.sdk.event;
import java.util.Map;
/**
* 事件记录
*/
public class EventRecord {
private String _track_id;
private String anonymous_id;
private String account_id;
private String type;
private String event;
private String time;
private String send_time;
private Map properties;
public EventRecord(){}
public EventRecord(String _track_id, String anonymous_id, String account_id, String type, String event, String time, String send_time, Map properties) {
this._track_id = _track_id;
this.anonymous_id = anonymous_id;
this.account_id = account_id;
this.type = type;
this.event = event;
this.time = time;
this.send_time = send_time;
this.properties = properties;
}
public String get_track_id() {
return _track_id;
}
public void set_track_id(String _track_id) {
this._track_id = _track_id;
}
public String getAnonymous_id() {
return anonymous_id;
}
public void setAnonymous_id(String anonymous_id) {
this.anonymous_id = anonymous_id;
}
public String getAccount_id() {
return account_id;
}
public void setAccount_id(String account_id) {
this.account_id = account_id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getEvent() {
return event;
}
public void setEvent(String event) {
this.event = event;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getSend_time() {
return send_time;
}
public void setSend_time(String send_time) {
this.send_time = send_time;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
}