src.main.java.com.smartbear.readyapi.client.model.HarPostData 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
The newest version!
package com.smartbear.readyapi.client.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.smartbear.readyapi.client.model.HarParam;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-07-29T13:25:49.703+02:00")
public class HarPostData {
private String mimeType = null;
private List params = new ArrayList();
private String text = null;
private String comment = null;
/**
**/
public HarPostData mimeType(String mimeType) {
this.mimeType = mimeType;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("mimeType")
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
/**
**/
public HarPostData params(List params) {
this.params = params;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("params")
public List getParams() {
return params;
}
public void setParams(List params) {
this.params = params;
}
/**
**/
public HarPostData text(String text) {
this.text = text;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("text")
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
/**
**/
public HarPostData 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;
}
HarPostData harPostData = (HarPostData) o;
return Objects.equals(this.mimeType, harPostData.mimeType) &&
Objects.equals(this.params, harPostData.params) &&
Objects.equals(this.text, harPostData.text) &&
Objects.equals(this.comment, harPostData.comment);
}
@Override
public int hashCode() {
return Objects.hash(mimeType, params, text, comment);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class HarPostData {\n");
sb.append(" mimeType: ").append(toIndentedString(mimeType)).append("\n");
sb.append(" params: ").append(toIndentedString(params)).append("\n");
sb.append(" text: ").append(toIndentedString(text)).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 ");
}
}