com.seeq.model.SecretConfigurationFieldOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 65.1.3-v202408082312
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.ConfigurationFieldOutputV1;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* SecretConfigurationFieldOutputV1
*/
public class SecretConfigurationFieldOutputV1 extends ConfigurationFieldOutputV1 {
@JsonProperty("maxLength")
private Integer maxLength = null;
@JsonProperty("minLength")
private Integer minLength = null;
public SecretConfigurationFieldOutputV1 maxLength(Integer maxLength) {
this.maxLength = maxLength;
return this;
}
/**
* The maximum allowed length of the secret
* @return maxLength
**/
@Schema(description = "The maximum allowed length of the secret")
public Integer getMaxLength() {
return maxLength;
}
public void setMaxLength(Integer maxLength) {
this.maxLength = maxLength;
}
public SecretConfigurationFieldOutputV1 minLength(Integer minLength) {
this.minLength = minLength;
return this;
}
/**
* The minimum allowed length of the secret
* @return minLength
**/
@Schema(description = "The minimum allowed length of the secret")
public Integer getMinLength() {
return minLength;
}
public void setMinLength(Integer minLength) {
this.minLength = minLength;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SecretConfigurationFieldOutputV1 secretConfigurationFieldOutputV1 = (SecretConfigurationFieldOutputV1) o;
return Objects.equals(this.maxLength, secretConfigurationFieldOutputV1.maxLength) &&
Objects.equals(this.minLength, secretConfigurationFieldOutputV1.minLength) &&
super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(maxLength, minLength, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SecretConfigurationFieldOutputV1 {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" maxLength: ").append(toIndentedString(maxLength)).append("\n");
sb.append(" minLength: ").append(toIndentedString(minLength)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}