com.katalon.testops.model.PlatformResource 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;
/**
* PlatformResource
*/
public class PlatformResource {
@JsonProperty("id")
private Long id = null;
@JsonProperty("osName")
private String osName = null;
@JsonProperty("osVersion")
private String osVersion = null;
@JsonProperty("browserName")
private String browserName = null;
@JsonProperty("browserVersion")
private String browserVersion = null;
public PlatformResource id(Long id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@Schema(description = "")
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public PlatformResource osName(String osName) {
this.osName = osName;
return this;
}
/**
* Get osName
* @return osName
**/
@Schema(description = "")
public String getOsName() {
return osName;
}
public void setOsName(String osName) {
this.osName = osName;
}
public PlatformResource osVersion(String osVersion) {
this.osVersion = osVersion;
return this;
}
/**
* Get osVersion
* @return osVersion
**/
@Schema(description = "")
public String getOsVersion() {
return osVersion;
}
public void setOsVersion(String osVersion) {
this.osVersion = osVersion;
}
public PlatformResource browserName(String browserName) {
this.browserName = browserName;
return this;
}
/**
* Get browserName
* @return browserName
**/
@Schema(description = "")
public String getBrowserName() {
return browserName;
}
public void setBrowserName(String browserName) {
this.browserName = browserName;
}
public PlatformResource browserVersion(String browserVersion) {
this.browserVersion = browserVersion;
return this;
}
/**
* Get browserVersion
* @return browserVersion
**/
@Schema(description = "")
public String getBrowserVersion() {
return browserVersion;
}
public void setBrowserVersion(String browserVersion) {
this.browserVersion = browserVersion;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PlatformResource platformResource = (PlatformResource) o;
return Objects.equals(this.id, platformResource.id) &&
Objects.equals(this.osName, platformResource.osName) &&
Objects.equals(this.osVersion, platformResource.osVersion) &&
Objects.equals(this.browserName, platformResource.browserName) &&
Objects.equals(this.browserVersion, platformResource.browserVersion);
}
@Override
public int hashCode() {
return Objects.hash(id, osName, osVersion, browserName, browserVersion);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PlatformResource {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" osName: ").append(toIndentedString(osName)).append("\n");
sb.append(" osVersion: ").append(toIndentedString(osVersion)).append("\n");
sb.append(" browserName: ").append(toIndentedString(browserName)).append("\n");
sb.append(" browserVersion: ").append(toIndentedString(browserVersion)).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 ");
}
}