2929 MonitorSearchResult .JSON_PROPERTY_NAME ,
3030 MonitorSearchResult .JSON_PROPERTY_NOTIFICATIONS ,
3131 MonitorSearchResult .JSON_PROPERTY_ORG_ID ,
32+ MonitorSearchResult .JSON_PROPERTY_QUALITY_ISSUES ,
3233 MonitorSearchResult .JSON_PROPERTY_QUERY ,
3334 MonitorSearchResult .JSON_PROPERTY_SCOPES ,
3435 MonitorSearchResult .JSON_PROPERTY_STATUS ,
@@ -63,6 +64,9 @@ public class MonitorSearchResult {
6364 public static final String JSON_PROPERTY_ORG_ID = "org_id" ;
6465 private Long orgId ;
6566
67+ public static final String JSON_PROPERTY_QUALITY_ISSUES = "quality_issues" ;
68+ private List <String > qualityIssues = null ;
69+
6670 public static final String JSON_PROPERTY_QUERY = "query" ;
6771 private String query ;
6872
@@ -188,6 +192,18 @@ public Long getOrgId() {
188192 return orgId ;
189193 }
190194
195+ /**
196+ * Quality issues detected with the monitor.
197+ *
198+ * @return qualityIssues
199+ */
200+ @ jakarta .annotation .Nullable
201+ @ JsonProperty (JSON_PROPERTY_QUALITY_ISSUES )
202+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
203+ public List <String > getQualityIssues () {
204+ return qualityIssues ;
205+ }
206+
191207 public MonitorSearchResult query (String query ) {
192208 this .query = query ;
193209 return this ;
@@ -355,6 +371,7 @@ public boolean equals(Object o) {
355371 && Objects .equals (this .name , monitorSearchResult .name )
356372 && Objects .equals (this .notifications , monitorSearchResult .notifications )
357373 && Objects .equals (this .orgId , monitorSearchResult .orgId )
374+ && Objects .equals (this .qualityIssues , monitorSearchResult .qualityIssues )
358375 && Objects .equals (this .query , monitorSearchResult .query )
359376 && Objects .equals (this .scopes , monitorSearchResult .scopes )
360377 && Objects .equals (this .status , monitorSearchResult .status )
@@ -374,6 +391,7 @@ public int hashCode() {
374391 name ,
375392 notifications ,
376393 orgId ,
394+ qualityIssues ,
377395 query ,
378396 scopes ,
379397 status ,
@@ -394,6 +412,7 @@ public String toString() {
394412 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
395413 sb .append (" notifications: " ).append (toIndentedString (notifications )).append ("\n " );
396414 sb .append (" orgId: " ).append (toIndentedString (orgId )).append ("\n " );
415+ sb .append (" qualityIssues: " ).append (toIndentedString (qualityIssues )).append ("\n " );
397416 sb .append (" query: " ).append (toIndentedString (query )).append ("\n " );
398417 sb .append (" scopes: " ).append (toIndentedString (scopes )).append ("\n " );
399418 sb .append (" status: " ).append (toIndentedString (status )).append ("\n " );
0 commit comments