-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEvents.java
More file actions
55 lines (45 loc) · 1.64 KB
/
Events.java
File metadata and controls
55 lines (45 loc) · 1.64 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 Events {
private String id;
private String type;
private Actor actor;
private EventRepo repo;
private Payload payload;
private boolean eventPublic;
private String createdAt;
private Actor org;
@JsonProperty("id")
public String getID() { return id; }
@JsonProperty("id")
public void setID(String value) { this.id = value; }
@JsonProperty("type")
public String getType() { return type; }
@JsonProperty("type")
public void setType(String value) { this.type = value; }
@JsonProperty("actor")
public Actor getActor() { return actor; }
@JsonProperty("actor")
public void setActor(Actor value) { this.actor = value; }
@JsonProperty("repo")
public EventRepo getRepo() { return repo; }
@JsonProperty("repo")
public void setRepo(EventRepo value) { this.repo = value; }
@JsonProperty("payload")
public Payload getPayload() { return payload; }
@JsonProperty("payload")
public void setPayload(Payload value) { this.payload = value; }
@JsonProperty("public")
public boolean getEventPublic() { return eventPublic; }
@JsonProperty("public")
public void setEventPublic(boolean value) { this.eventPublic = value; }
@JsonProperty("created_at")
public String getCreatedAt() { return createdAt; }
@JsonProperty("created_at")
public void setCreatedAt(String value) { this.createdAt = value; }
@JsonProperty("org")
public Actor getOrg() { return org; }
@JsonProperty("org")
public void setOrg(Actor value) { this.org = value; }
}