3535 */
3636@ JsonPropertyOrder ({
3737 AuditActionsVM .JSON_PROPERTY_ITEMS ,
38- AuditActionsVM .JSON_PROPERTY_COUNT ,
38+ AuditActionsVM .JSON_PROPERTY_HAS_MORE ,
3939 AuditActionsVM .JSON_PROPERTY_SKIP ,
4040 AuditActionsVM .JSON_PROPERTY_TAKE
4141})
@@ -44,8 +44,8 @@ public class AuditActionsVM {
4444 public static final String JSON_PROPERTY_ITEMS = "items" ;
4545 private JsonNullable <List <AuditActionVM >> items = JsonNullable .<List <AuditActionVM >>undefined ();
4646
47- public static final String JSON_PROPERTY_COUNT = "count " ;
48- private Long count ;
47+ public static final String JSON_PROPERTY_HAS_MORE = "hasMore " ;
48+ private Boolean hasMore ;
4949
5050 public static final String JSON_PROPERTY_SKIP = "skip" ;
5151 private Integer skip ;
@@ -102,29 +102,29 @@ public void setItems(List<AuditActionVM> items) {
102102 }
103103
104104
105- public AuditActionsVM count ( Long count ) {
105+ public AuditActionsVM hasMore ( Boolean hasMore ) {
106106
107- this .count = count ;
107+ this .hasMore = hasMore ;
108108 return this ;
109109 }
110110
111111 /**
112- * Get count
113- * @return count
112+ * Get hasMore
113+ * @return hasMore
114114 **/
115115 @ javax .annotation .Nullable
116- @ JsonProperty (JSON_PROPERTY_COUNT )
116+ @ JsonProperty (JSON_PROPERTY_HAS_MORE )
117117 @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
118118
119- public Long getCount () {
120- return count ;
119+ public Boolean getHasMore () {
120+ return hasMore ;
121121 }
122122
123123
124- @ JsonProperty (JSON_PROPERTY_COUNT )
124+ @ JsonProperty (JSON_PROPERTY_HAS_MORE )
125125 @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
126- public void setCount ( Long count ) {
127- this .count = count ;
126+ public void setHasMore ( Boolean hasMore ) {
127+ this .hasMore = hasMore ;
128128 }
129129
130130
@@ -190,7 +190,7 @@ public boolean equals(Object o) {
190190 }
191191 AuditActionsVM auditActionsVM = (AuditActionsVM ) o ;
192192 return equalsNullable (this .items , auditActionsVM .items ) &&
193- Objects .equals (this .count , auditActionsVM .count ) &&
193+ Objects .equals (this .hasMore , auditActionsVM .hasMore ) &&
194194 Objects .equals (this .skip , auditActionsVM .skip ) &&
195195 Objects .equals (this .take , auditActionsVM .take );
196196 }
@@ -201,7 +201,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
201201
202202 @ Override
203203 public int hashCode () {
204- return Objects .hash (hashCodeNullable (items ), count , skip , take );
204+ return Objects .hash (hashCodeNullable (items ), hasMore , skip , take );
205205 }
206206
207207 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -216,7 +216,7 @@ public String toString() {
216216 StringBuilder sb = new StringBuilder ();
217217 sb .append ("class AuditActionsVM {\n " );
218218 sb .append (" items: " ).append (toIndentedString (items )).append ("\n " );
219- sb .append (" count : " ).append (toIndentedString (count )).append ("\n " );
219+ sb .append (" hasMore : " ).append (toIndentedString (hasMore )).append ("\n " );
220220 sb .append (" skip: " ).append (toIndentedString (skip )).append ("\n " );
221221 sb .append (" take: " ).append (toIndentedString (take )).append ("\n " );
222222 sb .append ("}" );
0 commit comments