File tree 1 file changed +20
-0
lines changed
src/main/java/org/zendesk/client/v2/model 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ public class SatisfactionRating implements Serializable {
25
25
private Date createdAt ;
26
26
private Date updatedAt ;
27
27
private String comment ;
28
+ private String reason ;
29
+ private Long reasonId ;
28
30
29
31
@ JsonProperty ("assignee_id" )
30
32
public Long getAssigneeId () {
@@ -104,6 +106,24 @@ public void setUpdatedAt(Date updatedAt) {
104
106
this .updatedAt = updatedAt ;
105
107
}
106
108
109
+ @ JsonProperty ("reason" )
110
+ public String getReason () {
111
+ return reason ;
112
+ }
113
+
114
+ public void setReason (String reason ) {
115
+ this .reason = reason ;
116
+ }
117
+
118
+ @ JsonProperty ("reason_id" )
119
+ public Long getReasonId () {
120
+ return reasonId ;
121
+ }
122
+
123
+ public void setReasonId (Long reasonId ) {
124
+ this .reasonId = reasonId ;
125
+ }
126
+
107
127
public String getUrl () {
108
128
return url ;
109
129
}
You can’t perform that action at this time.
0 commit comments