-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPullRequestLinks.java
More file actions
55 lines (45 loc) · 1.73 KB
/
PullRequestLinks.java
File metadata and controls
55 lines (45 loc) · 1.73 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
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class PullRequestLinks {
private HTML self;
private HTML html;
private HTML issue;
private HTML comments;
private HTML reviewComments;
private HTML reviewComment;
private HTML commits;
private HTML statuses;
@JsonProperty("self")
public HTML getSelf() { return self; }
@JsonProperty("self")
public void setSelf(HTML value) { this.self = value; }
@JsonProperty("html")
public HTML getHTML() { return html; }
@JsonProperty("html")
public void setHTML(HTML value) { this.html = value; }
@JsonProperty("issue")
public HTML getIssue() { return issue; }
@JsonProperty("issue")
public void setIssue(HTML value) { this.issue = value; }
@JsonProperty("comments")
public HTML getComments() { return comments; }
@JsonProperty("comments")
public void setComments(HTML value) { this.comments = value; }
@JsonProperty("review_comments")
public HTML getReviewComments() { return reviewComments; }
@JsonProperty("review_comments")
public void setReviewComments(HTML value) { this.reviewComments = value; }
@JsonProperty("review_comment")
public HTML getReviewComment() { return reviewComment; }
@JsonProperty("review_comment")
public void setReviewComment(HTML value) { this.reviewComment = value; }
@JsonProperty("commits")
public HTML getCommits() { return commits; }
@JsonProperty("commits")
public void setCommits(HTML value) { this.commits = value; }
@JsonProperty("statuses")
public HTML getStatuses() { return statuses; }
@JsonProperty("statuses")
public void setStatuses(HTML value) { this.statuses = value; }
}