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

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

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

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

final class AutoValue_UpdateWidgetRequest extends $AutoValue_UpdateWidgetRequest {
  AutoValue_UpdateWidgetRequest(String description, int cacheTime) {
    super(description, cacheTime);
  }

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

  @JsonIgnore
  public final int getCacheTime() {
    return cacheTime();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy