Skip to content

Commit 06e8891

Browse files
committed
Add more properties
1 parent 5e20124 commit 06e8891

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

schema/src/main/java/com/github/api/v2/schema/Payload.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ public class Payload extends SchemaEntity {
4949
/** The target id */
5050
private String targetId;
5151

52+
/** The ref type */
53+
private String refType;
54+
55+
/** The url */
56+
private String url;
57+
58+
/** The id */
59+
private String id;
60+
5261
public String getRepo() {
5362
return repo;
5463
}
@@ -168,4 +177,28 @@ public String getTargetId() {
168177
public void setTargetId(String targetId) {
169178
this.targetId = targetId;
170179
}
180+
181+
public String getRefType() {
182+
return refType;
183+
}
184+
185+
public void setRefType(String refType) {
186+
this.refType = refType;
187+
}
188+
189+
public String getUrl() {
190+
return url;
191+
}
192+
193+
public void setUrl(String url) {
194+
this.url = url;
195+
}
196+
197+
public String getId() {
198+
return id;
199+
}
200+
201+
public void setId(String id) {
202+
this.id = id;
203+
}
171204
}

0 commit comments

Comments
 (0)