com.seeq.model.StringConfigurationFieldOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 64.3.0-v202405012032
*
*
* 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;
/**
* This model provides the structure used by the administration interface to generate a string field in the connection configuration form
*/
@Schema(description = "This model provides the structure used by the administration interface to generate a string field in the connection configuration form")
public class StringConfigurationFieldOutputV1 extends ConfigurationFieldOutputV1 {
@JsonProperty("maxLength")
private Integer maxLength = null;
@JsonProperty("minLength")
private Integer minLength = null;
public StringConfigurationFieldOutputV1 maxLength(Integer maxLength) {
this.maxLength = maxLength;
return this;
}
/**
* The maximum allowed length of the string
* @return maxLength
**/
@Schema(description = "The maximum allowed length of the string")
public Integer getMaxLength() {
return maxLength;
}
public void setMaxLength(Integer maxLength) {
this.maxLength = maxLength;
}
public StringConfigurationFieldOutputV1 minLength(Integer minLength) {
this.minLength = minLength;
return this;
}
/**
* The minimum allowed length of the string
* @return minLength
**/
@Schema(description = "The minimum allowed length of the string")
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;
}
StringConfigurationFieldOutputV1 stringConfigurationFieldOutputV1 = (StringConfigurationFieldOutputV1) o;
return Objects.equals(this.maxLength, stringConfigurationFieldOutputV1.maxLength) &&
Objects.equals(this.minLength, stringConfigurationFieldOutputV1.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 StringConfigurationFieldOutputV1 {\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 ");
}
}