-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedditData.java
More file actions
37 lines (30 loc) · 1.08 KB
/
RedditData.java
File metadata and controls
37 lines (30 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class RedditData {
private String modhash;
private long dist;
private Child[] children;
private String after;
private Object before;
@JsonProperty("modhash")
public String getModhash() { return modhash; }
@JsonProperty("modhash")
public void setModhash(String value) { this.modhash = value; }
@JsonProperty("dist")
public long getDist() { return dist; }
@JsonProperty("dist")
public void setDist(long value) { this.dist = value; }
@JsonProperty("children")
public Child[] getChildren() { return children; }
@JsonProperty("children")
public void setChildren(Child[] value) { this.children = value; }
@JsonProperty("after")
public String getAfter() { return after; }
@JsonProperty("after")
public void setAfter(String value) { this.after = value; }
@JsonProperty("before")
public Object getBefore() { return before; }
@JsonProperty("before")
public void setBefore(Object value) { this.before = value; }
}