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

org.graylog2.rest.models.system.inputs.requests.AutoValue_CreateStaticFieldRequest Maven / Gradle / Ivy

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

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

final class AutoValue_CreateStaticFieldRequest extends $AutoValue_CreateStaticFieldRequest {
  AutoValue_CreateStaticFieldRequest(String key, String value) {
    super(key, value);
  }

  @JsonIgnore
  public final String getKey() {
    return key();
  }

  @JsonIgnore
  public final String getValue() {
    return value();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy