-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGists.java
More file actions
115 lines (95 loc) · 3.83 KB
/
Gists.java
File metadata and controls
115 lines (95 loc) · 3.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class Gists {
private String url;
private String forksURL;
private String commitsURL;
private String id;
private String nodeID;
private String gitPullURL;
private String gitPushURL;
private String htmlURL;
private Map<String, File> files;
private boolean gistPublic;
private String createdAt;
private String updatedAt;
private String description;
private long comments;
private Object user;
private String commentsURL;
private Owner owner;
private boolean truncated;
@JsonProperty("url")
public String getURL() { return url; }
@JsonProperty("url")
public void setURL(String value) { this.url = value; }
@JsonProperty("forks_url")
public String getForksURL() { return forksURL; }
@JsonProperty("forks_url")
public void setForksURL(String value) { this.forksURL = value; }
@JsonProperty("commits_url")
public String getCommitsURL() { return commitsURL; }
@JsonProperty("commits_url")
public void setCommitsURL(String value) { this.commitsURL = value; }
@JsonProperty("id")
public String getID() { return id; }
@JsonProperty("id")
public void setID(String value) { this.id = value; }
@JsonProperty("node_id")
public String getNodeID() { return nodeID; }
@JsonProperty("node_id")
public void setNodeID(String value) { this.nodeID = value; }
@JsonProperty("git_pull_url")
public String getGitPullURL() { return gitPullURL; }
@JsonProperty("git_pull_url")
public void setGitPullURL(String value) { this.gitPullURL = value; }
@JsonProperty("git_push_url")
public String getGitPushURL() { return gitPushURL; }
@JsonProperty("git_push_url")
public void setGitPushURL(String value) { this.gitPushURL = value; }
@JsonProperty("html_url")
public String getHTMLURL() { return htmlURL; }
@JsonProperty("html_url")
public void setHTMLURL(String value) { this.htmlURL = value; }
@JsonProperty("files")
public Map<String, File> getFiles() { return files; }
@JsonProperty("files")
public void setFiles(Map<String, File> value) { this.files = value; }
@JsonProperty("public")
public boolean getGistPublic() { return gistPublic; }
@JsonProperty("public")
public void setGistPublic(boolean value) { this.gistPublic = value; }
@JsonProperty("created_at")
public String getCreatedAt() { return createdAt; }
@JsonProperty("created_at")
public void setCreatedAt(String value) { this.createdAt = value; }
@JsonProperty("updated_at")
public String getUpdatedAt() { return updatedAt; }
@JsonProperty("updated_at")
public void setUpdatedAt(String value) { this.updatedAt = value; }
@JsonProperty("description")
public String getDescription() { return description; }
@JsonProperty("description")
public void setDescription(String value) { this.description = value; }
@JsonProperty("comments")
public long getComments() { return comments; }
@JsonProperty("comments")
public void setComments(long value) { this.comments = value; }
@JsonProperty("user")
public Object getUser() { return user; }
@JsonProperty("user")
public void setUser(Object value) { this.user = value; }
@JsonProperty("comments_url")
public String getCommentsURL() { return commentsURL; }
@JsonProperty("comments_url")
public void setCommentsURL(String value) { this.commentsURL = value; }
@JsonProperty("owner")
public Owner getOwner() { return owner; }
@JsonProperty("owner")
public void setOwner(Owner value) { this.owner = value; }
@JsonProperty("truncated")
public boolean getTruncated() { return truncated; }
@JsonProperty("truncated")
public void setTruncated(boolean value) { this.truncated = value; }
}