File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
schema/src/main/java/com/github/api/v2/schema Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,15 @@ public class Payload extends SchemaEntity {
49
49
/** The target id */
50
50
private String targetId ;
51
51
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
+
52
61
public String getRepo () {
53
62
return repo ;
54
63
}
@@ -168,4 +177,28 @@ public String getTargetId() {
168
177
public void setTargetId (String targetId ) {
169
178
this .targetId = targetId ;
170
179
}
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
+ }
171
204
}
You can’t perform that action at this time.
0 commit comments