@@ -196,6 +196,9 @@ private static boolean isAdminQuery(Map<String, String> params) {
196196 @ JsonProperty ("updated_at" )
197197 private long updatedAt ;
198198
199+ @ JsonProperty ("waiting_since" )
200+ private long waitingSince ;
201+
199202 @ JsonProperty ("conversation_parts" )
200203 private ConversationPartCollection conversationPartCollection ;
201204
@@ -267,6 +270,10 @@ public long getUpdatedAt() {
267270 return updatedAt ;
268271 }
269272
273+ public long getWaitingSince () {
274+ return waitingSince ;
275+ }
276+
270277 public ConversationPartCollection getConversationPartCollection () {
271278 if (conversationPartCollection == null ) {
272279 conversationPartCollection = find (this .getId ()).getConversationPartCollection ();
@@ -302,6 +309,7 @@ public boolean equals(Object o) {
302309 if (open != that .open ) return false ;
303310 if (read != that .read ) return false ;
304311 if (updatedAt != that .updatedAt ) return false ;
312+ if (waitingSince != that .waitingSince ) return false ;
305313 if (assignee != null ? !assignee .equals (that .assignee ) : that .assignee != null ) return false ;
306314 if (conversationMessage != null ? !conversationMessage .equals (that .conversationMessage ) : that .conversationMessage != null )
307315 return false ;
@@ -327,6 +335,7 @@ public int hashCode() {
327335 result = 31 * result + (assignee != null ? assignee .hashCode () : 0 );
328336 result = 31 * result + (int ) (createdAt ^ (createdAt >>> 32 ));
329337 result = 31 * result + (int ) (updatedAt ^ (updatedAt >>> 32 ));
338+ result = 31 * result + (int ) (waitingSince ^ (waitingSince >>> 32 ));
330339 result = 31 * result + (conversationPartCollection != null ? conversationPartCollection .hashCode () : 0 );
331340 result = 31 * result + (tagCollection != null ? tagCollection .hashCode () : 0 );
332341 result = 31 * result + (open ? 1 : 0 );
@@ -345,6 +354,7 @@ public String toString() {
345354 ", assignee=" + assignee +
346355 ", createdAt=" + createdAt +
347356 ", updatedAt=" + updatedAt +
357+ ", waitingSince=" + waitingSince +
348358 ", conversationPartCollection=" + conversationPartCollection +
349359 ", tagCollection=" + tagCollection +
350360 ", open=" + open +
0 commit comments