com.seeq.model.FunctionParameterOutputV1 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 io.swagger.v3.oas.annotations.media.Schema;
/**
* The parameters of the function
*/
@Schema(description = "The parameters of the function")
public class FunctionParameterOutputV1 {
@JsonProperty("name")
private String name = null;
@JsonProperty("optional")
private Boolean optional = false;
@JsonProperty("type")
private String type = null;
public FunctionParameterOutputV1 name(String name) {
this.name = name;
return this;
}
/**
* The identifier of the parameter
* @return name
**/
@Schema(description = "The identifier of the parameter")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public FunctionParameterOutputV1 optional(Boolean optional) {
this.optional = optional;
return this;
}
/**
* True if this parameter is optional for the function call
* @return optional
**/
@Schema(description = "True if this parameter is optional for the function call")
public Boolean getOptional() {
return optional;
}
public void setOptional(Boolean optional) {
this.optional = optional;
}
public FunctionParameterOutputV1 type(String type) {
this.type = type;
return this;
}
/**
* The type of the parameter
* @return type
**/
@Schema(description = "The type of the parameter")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FunctionParameterOutputV1 functionParameterOutputV1 = (FunctionParameterOutputV1) o;
return Objects.equals(this.name, functionParameterOutputV1.name) &&
Objects.equals(this.optional, functionParameterOutputV1.optional) &&
Objects.equals(this.type, functionParameterOutputV1.type);
}
@Override
public int hashCode() {
return Objects.hash(name, optional, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FunctionParameterOutputV1 {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" optional: ").append(toIndentedString(optional)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}