src.main.java.com.smartbear.readyapi.client.model.HarParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ready-api-testserver-client Show documentation
Show all versions of ready-api-testserver-client Show documentation
Java client library for creating and executing test recipes against Ready!API TestServer
package com.smartbear.readyapi.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-05-24T08:38:08.699-04:00")
public class HarParam {
private String name = null;
private String value = null;
private String fileName = null;
private String contentType = null;
private String comment = null;
/**
**/
public HarParam name(String name) {
this.name = name;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
**/
public HarParam value(String value) {
this.value = value;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("value")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
/**
**/
public HarParam fileName(String fileName) {
this.fileName = fileName;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("fileName")
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
/**
**/
public HarParam contentType(String contentType) {
this.contentType = contentType;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("contentType")
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
/**
**/
public HarParam comment(String comment) {
this.comment = comment;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("comment")
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
HarParam harParam = (HarParam) o;
return Objects.equals(this.name, harParam.name) &&
Objects.equals(this.value, harParam.value) &&
Objects.equals(this.fileName, harParam.fileName) &&
Objects.equals(this.contentType, harParam.contentType) &&
Objects.equals(this.comment, harParam.comment);
}
@Override
public int hashCode() {
return Objects.hash(name, value, fileName, contentType, comment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class HarParam {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).append("\n");
sb.append(" contentType: ").append(toIndentedString(contentType)).append("\n");
sb.append(" comment: ").append(toIndentedString(comment)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy