Skip to content

Commit 6674187

Browse files
committed
Added missing fields (#154).
1 parent 91a0ec4 commit 6674187

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/main/java/org/gitlab4j/api/models/RunnerDetail.java

+20
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@
77
import javax.xml.bind.annotation.XmlAccessType;
88
import javax.xml.bind.annotation.XmlAccessorType;
99
import javax.xml.bind.annotation.XmlRootElement;
10+
11+
import java.util.Date;
1012
import java.util.List;
1113

1214
@XmlRootElement
1315
@XmlAccessorType(XmlAccessType.FIELD)
1416
public 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
}

0 commit comments

Comments
 (0)