File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
main/java/org/gitlab4j/api/models
test/resources/org/gitlab4j/api Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ public class Pipeline {
28
28
private Float queuedDuration ;
29
29
private String webUrl ;
30
30
private DetailedStatus detailedStatus ;
31
+ private String name ;
31
32
32
33
public Long getId () {
33
34
return id ;
@@ -277,6 +278,14 @@ public void setDetailedStatus(DetailedStatus detailedStatus) {
277
278
this .detailedStatus = detailedStatus ;
278
279
}
279
280
281
+ public String getName () {
282
+ return name ;
283
+ }
284
+
285
+ public void setName (String name ) {
286
+ this .name = name ;
287
+ }
288
+
280
289
@ Override
281
290
public String toString () {
282
291
return (JacksonJson .toJsonString (this ));
Original file line number Diff line number Diff line change 32
32
"favicon" : " /assets/ci_favicons/favicon_status_pending-5bdf338420e5221ca24353b6bff1c9367189588750632e9a871b7af09ff6a2ae.png"
33
33
},
34
34
"coverage" : " 30.0" ,
35
- "web_url" : " https://example.com/foo/bar/pipelines/46"
35
+ "web_url" : " https://example.com/foo/bar/pipelines/46" ,
36
+ "name" : " Custom pipeline name"
36
37
}
You can’t perform that action at this time.
0 commit comments