com.katalon.testops.model.ProjectConfigurationResource 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;
/**
* ProjectConfigurationResource
*/
public class ProjectConfigurationResource {
/**
* Gets or Sets name
*/
public enum NameEnum {
TIMEZONE("TIMEZONE"),
ASSERTION_PATTERN("ASSERTION_PATTERN");
private String value;
NameEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static NameEnum fromValue(String text) {
for (NameEnum b : NameEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
} @JsonProperty("name")
private NameEnum name = null;
@JsonProperty("value")
private String value = null;
public ProjectConfigurationResource name(NameEnum name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
**/
@Schema(description = "")
public NameEnum getName() {
return name;
}
public void setName(NameEnum name) {
this.name = name;
}
public ProjectConfigurationResource value(String value) {
this.value = value;
return this;
}
/**
* Get value
* @return value
**/
@Schema(description = "")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ProjectConfigurationResource projectConfigurationResource = (ProjectConfigurationResource) o;
return Objects.equals(this.name, projectConfigurationResource.name) &&
Objects.equals(this.value, projectConfigurationResource.value);
}
@Override
public int hashCode() {
return Objects.hash(name, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ProjectConfigurationResource {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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 ");
}
}