We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 192e52b commit ca69478Copy full SHA for ca69478
1 file changed
api/src/main/java/com/creatubbles/api/model/gallery/Gallery.java
@@ -29,10 +29,10 @@ public class Gallery {
29
private boolean openForAll;
30
31
@JsonProperty("created_at")
32
- private String createdAt;
+ private Date createdAt;
33
34
@JsonProperty("updated_at")
35
- private String updatedAt;
+ private Date updatedAt;
36
37
@JsonProperty("last_bubbled_at")
38
private Date lastBubbledAt;
@@ -108,12 +108,12 @@ public boolean getOpenForAll() {
108
}
109
110
@NonNull
111
- public String getCreatedAt() {
+ public Date getCreatedAt() {
112
return createdAt;
113
114
115
116
- public String getUpdatedAt() {
+ public Date getUpdatedAt() {
117
return updatedAt;
118
119
0 commit comments