com.huaweicloud.sdk.cloudtest.v1.model.SimpleIssueVo Maven / Gradle / Ivy
package com.huaweicloud.sdk.cloudtest.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 需求
*/
public class SimpleIssueVo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "id")
private String id;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private String name;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "path")
private String path;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "tracker_name")
private String trackerName;
public SimpleIssueVo withId(String id) {
this.id = id;
return this;
}
/**
* ID
* @return id
*/
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public SimpleIssueVo withName(String name) {
this.name = name;
return this;
}
/**
* 名称
* @return name
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public SimpleIssueVo withPath(String path) {
this.path = path;
return this;
}
/**
* 层级路径
* @return path
*/
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public SimpleIssueVo withTrackerName(String trackerName) {
this.trackerName = trackerName;
return this;
}
/**
* 类型
* @return trackerName
*/
public String getTrackerName() {
return trackerName;
}
public void setTrackerName(String trackerName) {
this.trackerName = trackerName;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
SimpleIssueVo that = (SimpleIssueVo) obj;
return Objects.equals(this.id, that.id) && Objects.equals(this.name, that.name)
&& Objects.equals(this.path, that.path) && Objects.equals(this.trackerName, that.trackerName);
}
@Override
public int hashCode() {
return Objects.hash(id, name, path, trackerName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SimpleIssueVo {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" path: ").append(toIndentedString(path)).append("\n");
sb.append(" trackerName: ").append(toIndentedString(trackerName)).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 ");
}
}