com.aliyun.openservices.paifeaturestore.model.SequenceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paifeaturestore-sdk Show documentation
Show all versions of paifeaturestore-sdk Show documentation
SDK for PAI-FeatureStore service
The newest version!
package com.aliyun.openservices.paifeaturestore.model;
import com.google.gson.annotations.SerializedName;
public class SequenceInfo {
//item_id
@SerializedName("item_id_field")
private Long ItemIdField;
//event
@SerializedName("event_field")
private String EventField;
//timestamp
@SerializedName("timestamp_field")
private Long TimestampField;
//play_time
@SerializedName("play_time_field")
private Double PlayTimeField;
public Long getItemIdField() {
return ItemIdField;
}
public void setItemIdField(Long itemIdField) {
ItemIdField = itemIdField;
}
public String getEventField() {
return EventField;
}
public void setEventField(String eventField) {
EventField = eventField;
}
public Long getTimestampField() {
return TimestampField;
}
public void setTimestampField(Long timestampField) {
TimestampField = timestampField;
}
public Double getPlayTimeField() {
return PlayTimeField;
}
public void setPlayTimeField(Double playTimeField) {
PlayTimeField = playTimeField;
}
}