com.huaweicloud.sdk.aom.v1.model.ReferenceInfo Maven / Gradle / Ivy
package com.huaweicloud.sdk.aom.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 脚本版本或文件包版本引用的作业详情。
*/
public class ReferenceInfo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "job_id")
private String jobId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "job_name")
private String jobName;
public ReferenceInfo withJobId(String jobId) {
this.jobId = jobId;
return this;
}
/**
* 作业ID。
* @return jobId
*/
public String getJobId() {
return jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public ReferenceInfo withJobName(String jobName) {
this.jobName = jobName;
return this;
}
/**
* 作业名称。
* @return jobName
*/
public String getJobName() {
return jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ReferenceInfo that = (ReferenceInfo) obj;
return Objects.equals(this.jobId, that.jobId) && Objects.equals(this.jobName, that.jobName);
}
@Override
public int hashCode() {
return Objects.hash(jobId, jobName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ReferenceInfo {\n");
sb.append(" jobId: ").append(toIndentedString(jobId)).append("\n");
sb.append(" jobName: ").append(toIndentedString(jobName)).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 ");
}
}