-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBase.java
More file actions
37 lines (30 loc) · 1 KB
/
Base.java
File metadata and controls
37 lines (30 loc) · 1 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 Base {
private String label;
private String ref;
private String sha;
private Owner user;
private BaseRepo repo;
@JsonProperty("label")
public String getLabel() { return label; }
@JsonProperty("label")
public void setLabel(String value) { this.label = value; }
@JsonProperty("ref")
public String getRef() { return ref; }
@JsonProperty("ref")
public void setRef(String value) { this.ref = value; }
@JsonProperty("sha")
public String getSHA() { return sha; }
@JsonProperty("sha")
public void setSHA(String value) { this.sha = value; }
@JsonProperty("user")
public Owner getUser() { return user; }
@JsonProperty("user")
public void setUser(Owner value) { this.user = value; }
@JsonProperty("repo")
public BaseRepo getRepo() { return repo; }
@JsonProperty("repo")
public void setRepo(BaseRepo value) { this.repo = value; }
}