All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.rest.models.streams.alerts.AutoValue_AlertListSummary Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.rest.models.streams.alerts;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.List;

final class AutoValue_AlertListSummary extends $AutoValue_AlertListSummary {
  AutoValue_AlertListSummary(long total, List alerts) {
    super(total, alerts);
  }

  @JsonIgnore
  public final long getTotal() {
    return total();
  }

  @JsonIgnore
  public final List getAlerts() {
    return alerts();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy