src.main.java.com.smartbear.readyapi.client.model.UnresolvedFile 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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-07-29T13:25:49.703+02:00")
public class UnresolvedFile {
private String fileName = null;
/**
* Name fo the unresolved file
**/
public UnresolvedFile fileName(String fileName) {
this.fileName = fileName;
return this;
}
@ApiModelProperty(example = "null", value = "Name fo the unresolved file")
@JsonProperty("fileName")
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UnresolvedFile unresolvedFile = (UnresolvedFile) o;
return Objects.equals(this.fileName, unresolvedFile.fileName);
}
@Override
public int hashCode() {
return Objects.hash(fileName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UnresolvedFile {\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).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 ");
}
}