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

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

There is a newer version: 6.0.5
Show newest version

package org.graylog2.rest.models.dashboards.requests;

import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Generated;
import javax.annotation.Nullable;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
 final class AutoValue_UpdateDashboardRequest extends UpdateDashboardRequest {

  private final String title;
  private final String description;

  AutoValue_UpdateDashboardRequest(
      @Nullable String title,
      @Nullable String description) {
    this.title = title;
    this.description = description;
  }

  @JsonProperty
  @Nullable
  @Override
  public String title() {
    return title;
  }

  @JsonProperty
  @Nullable
  @Override
  public String description() {
    return description;
  }

  @Override
  public String toString() {
    return "UpdateDashboardRequest{"
        + "title=" + title + ", "
        + "description=" + description
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof UpdateDashboardRequest) {
      UpdateDashboardRequest that = (UpdateDashboardRequest) o;
      return ((this.title == null) ? (that.title() == null) : this.title.equals(that.title()))
           && ((this.description == null) ? (that.description() == null) : this.description.equals(that.description()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= (title == null) ? 0 : this.title.hashCode();
    h *= 1000003;
    h ^= (description == null) ? 0 : this.description.hashCode();
    return h;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy