Skip to content

Commit 8350fef

Browse files
committed
adding custom_status_id to Request
1 parent cecc645 commit 8350fef

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/zendesk/client/v2/model/Request.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class Request implements Serializable {
1919
protected String subject;
2020
protected String description;
2121
protected Status status;
22+
protected Long customStatusId;
2223
protected Ticket.Requester requester;
2324
protected Long requesterId;
2425
protected Long organizationId;
@@ -87,6 +88,15 @@ public void setStatus(Status status) {
8788
this.status = status;
8889
}
8990

91+
@JsonProperty("custom_status_id")
92+
public Long getCustomStatusId() {
93+
return customStatusId;
94+
}
95+
96+
public void setCustomStatusId(Long customStatusId) {
97+
this.customStatusId = customStatusId;
98+
}
99+
90100
public String getSubject() {
91101
return subject;
92102
}

0 commit comments

Comments
 (0)