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

org.graylog2.rest.models.dashboards.requests.AutoValue_CreateDashboardRequest Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;

final class AutoValue_CreateDashboardRequest extends $AutoValue_CreateDashboardRequest {
  AutoValue_CreateDashboardRequest(String title, String description) {
    super(title, description);
  }

  @JsonIgnore
  public final String getTitle() {
    return title();
  }

  @JsonIgnore
  public final String getDescription() {
    return description();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy