File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
src/main/java/org/zendesk/client/v2/model Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ public class Request implements Serializable {
19
19
protected String subject ;
20
20
protected String description ;
21
21
protected Status status ;
22
+ protected Long customStatusId ;
22
23
protected Ticket .Requester requester ;
23
24
protected Long requesterId ;
24
25
protected Long organizationId ;
@@ -87,6 +88,15 @@ public void setStatus(Status status) {
87
88
this .status = status ;
88
89
}
89
90
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
+
90
100
public String getSubject () {
91
101
return subject ;
92
102
}
You can’t perform that action at this time.
0 commit comments