File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/main/java/org/gitlab4j/api/models Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 77import javax .xml .bind .annotation .XmlAccessType ;
88import javax .xml .bind .annotation .XmlAccessorType ;
99import javax .xml .bind .annotation .XmlRootElement ;
10+
11+ import java .util .Date ;
1012import java .util .List ;
1113
1214@ XmlRootElement
1315@ XmlAccessorType (XmlAccessType .FIELD )
1416public class RunnerDetail extends Runner {
1517
18+ private String architecture ;
1619 private String platform ;
20+ private Date contactedAt ;
1721 private List <Project > projects ;
1822 private String token ;
1923 private String revision ;
@@ -46,6 +50,14 @@ public String toString() {
4650 }
4751 }
4852
53+ public String getArchitecture () {
54+ return architecture ;
55+ }
56+
57+ public void setArchitecture (String architecture ) {
58+ this .architecture = architecture ;
59+ }
60+
4961 public String getPlatform () {
5062 return this .platform ;
5163 }
@@ -54,6 +66,14 @@ public void setPlatform(String platform) {
5466 this .platform = platform ;
5567 }
5668
69+ public Date getContactedAt () {
70+ return contactedAt ;
71+ }
72+
73+ public void setContactedAt (Date contactedAt ) {
74+ this .contactedAt = contactedAt ;
75+ }
76+
5777 public List <Project > getProjects () {
5878 return this .projects ;
5979 }
You can’t perform that action at this time.
0 commit comments