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

org.graylog2.rest.models.dashboards.responses.AutoValue_DashboardList Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.rest.models.dashboards.responses;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;

final class AutoValue_DashboardList extends $AutoValue_DashboardList {
  AutoValue_DashboardList(int total, List> dashboards) {
    super(total, dashboards);
  }

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

  @JsonIgnore
  public final List> getDashboards() {
    return dashboards();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy