Skip to content

Commit

Permalink
Changing timestamp to a string for the new ubi spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzonthemtn committed Nov 18, 2024
1 parent ecddad1 commit 6ef9bda
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class UbiQuery {

@SerializedName("timestamp")
private long timestamp;
private String timestamp;

@SerializedName("query_id")
private String queryId;
Expand Down Expand Up @@ -54,11 +54,11 @@ public int hashCode() {
toHashCode();
}

public long getTimestamp() {
public String getTimestamp() {
return timestamp;
}

public void setTimestamp(long timestamp) {
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}

Expand Down

0 comments on commit 6ef9bda

Please sign in to comment.