com.katalon.testops.model.SearchRequestFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testops-client-openapi Show documentation
Show all versions of testops-client-openapi Show documentation
Katalon TestOps Client generated by OpenAPI
/*
* Katalon TestOps API reference
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.0.0
*
*
* 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.katalon.testops.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;
import java.util.ArrayList;
import java.util.List;
/**
* SearchRequestFunction
*/
public class SearchRequestFunction {
@JsonProperty("key")
private String key = null;
@JsonProperty("functionName")
private String functionName = null;
@JsonProperty("parameters")
private List parameters = null;
@JsonProperty("timeZone")
private String timeZone = null;
public SearchRequestFunction key(String key) {
this.key = key;
return this;
}
/**
* Get key
* @return key
**/
@Schema(description = "")
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public SearchRequestFunction functionName(String functionName) {
this.functionName = functionName;
return this;
}
/**
* Get functionName
* @return functionName
**/
@Schema(description = "")
public String getFunctionName() {
return functionName;
}
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
public SearchRequestFunction parameters(List parameters) {
this.parameters = parameters;
return this;
}
public SearchRequestFunction addParametersItem(String parametersItem) {
if (this.parameters == null) {
this.parameters = new ArrayList();
}
this.parameters.add(parametersItem);
return this;
}
/**
* Get parameters
* @return parameters
**/
@Schema(description = "")
public List getParameters() {
return parameters;
}
public void setParameters(List parameters) {
this.parameters = parameters;
}
public SearchRequestFunction timeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
/**
* Get timeZone
* @return timeZone
**/
@Schema(description = "")
public String getTimeZone() {
return timeZone;
}
public void setTimeZone(String timeZone) {
this.timeZone = timeZone;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SearchRequestFunction searchRequestFunction = (SearchRequestFunction) o;
return Objects.equals(this.key, searchRequestFunction.key) &&
Objects.equals(this.functionName, searchRequestFunction.functionName) &&
Objects.equals(this.parameters, searchRequestFunction.parameters) &&
Objects.equals(this.timeZone, searchRequestFunction.timeZone);
}
@Override
public int hashCode() {
return Objects.hash(key, functionName, parameters, timeZone);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SearchRequestFunction {\n");
sb.append(" key: ").append(toIndentedString(key)).append("\n");
sb.append(" functionName: ").append(toIndentedString(functionName)).append("\n");
sb.append(" parameters: ").append(toIndentedString(parameters)).append("\n");
sb.append(" timeZone: ").append(toIndentedString(timeZone)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}