We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b816e8c + a84a8b2 commit 717c41bCopy full SHA for 717c41b
src/main/java/com/meituan/lyrebird/client/api/EventDetail.java
@@ -10,7 +10,7 @@ public class EventDetail {
10
@JsonProperty("event_id")
11
private String eventID;
12
private String id;
13
- private double timestamp;
+ private long timestamp;
14
15
public String getChannel() {
16
return channel;
@@ -44,11 +44,11 @@ public void setId(String id) {
44
this.id = id;
45
}
46
47
- public double getTimestamp() {
+ public long getTimestamp() {
48
return timestamp;
49
50
51
- public void setTimestamp(double timestamp) {
+ public void setTimestamp(long timestamp) {
52
this.timestamp = timestamp;
53
54
0 commit comments