Skip to content

Commit

Permalink
Missing timestamp field has been added to Item as ts. (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
laci0725 authored and ramswaroop committed Jun 9, 2017
1 parent 93a04c3 commit b27fc96
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class Item {
private String channel;
private Message message;
private long created;
private String ts;

public String getType() {
return type;
Expand Down Expand Up @@ -44,4 +45,12 @@ public long getCreated() {
public void setCreated(long created) {
this.created = created;
}

public String getTs() {
return this.ts;
}

public void setTs(String ts) {
this.ts = ts;
}
}

0 comments on commit b27fc96

Please sign in to comment.