com.katalon.testops.model.UploadBatchResource 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;
/**
* UploadBatchResource
*/
public class UploadBatchResource {
@JsonProperty("id")
private Long id = null;
@JsonProperty("done")
private Boolean done = null;
@JsonProperty("webUrl")
private String webUrl = null;
public UploadBatchResource 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 UploadBatchResource done(Boolean done) {
this.done = done;
return this;
}
/**
* Get done
* @return done
**/
@Schema(description = "")
public Boolean isDone() {
return done;
}
public void setDone(Boolean done) {
this.done = done;
}
public UploadBatchResource webUrl(String webUrl) {
this.webUrl = webUrl;
return this;
}
/**
* Get webUrl
* @return webUrl
**/
@Schema(description = "")
public String getWebUrl() {
return webUrl;
}
public void setWebUrl(String webUrl) {
this.webUrl = webUrl;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UploadBatchResource uploadBatchResource = (UploadBatchResource) o;
return Objects.equals(this.id, uploadBatchResource.id) &&
Objects.equals(this.done, uploadBatchResource.done) &&
Objects.equals(this.webUrl, uploadBatchResource.webUrl);
}
@Override
public int hashCode() {
return Objects.hash(id, done, webUrl);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UploadBatchResource {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" done: ").append(toIndentedString(done)).append("\n");
sb.append(" webUrl: ").append(toIndentedString(webUrl)).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 ");
}
}