com.huaweicloud.sdk.cloudtest.v1.model.ExternalBranchInfoVo Maven / Gradle / Ivy
package com.huaweicloud.sdk.cloudtest.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
import java.util.Objects;
/**
* 分支版本信息
*/
public class ExternalBranchInfoVo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "id")
private String id;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "type")
private String type;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "author")
private String author;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private String name;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "region")
private String region;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "last_modifier")
private String lastModifier;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "last_modified")
private OffsetDateTime lastModified;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "last_modified_timestamp")
private Long lastModifiedTimestamp;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "creation_date")
private OffsetDateTime creationDate;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "creation_date_timestamp")
private Long creationDateTimestamp;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "author_name")
private String authorName;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "is_base_branch")
private Integer isBaseBranch;
public ExternalBranchInfoVo 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 ExternalBranchInfoVo withType(String type) {
this.type = type;
return this;
}
/**
* 资源类型
* @return type
*/
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public ExternalBranchInfoVo withAuthor(String author) {
this.author = author;
return this;
}
/**
* 创建人
* @return author
*/
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public ExternalBranchInfoVo withName(String name) {
this.name = name;
return this;
}
/**
* 名称
* @return name
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ExternalBranchInfoVo withRegion(String region) {
this.region = region;
return this;
}
/**
* 区域
* @return region
*/
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public ExternalBranchInfoVo withLastModifier(String lastModifier) {
this.lastModifier = lastModifier;
return this;
}
/**
* 最后修改人
* @return lastModifier
*/
public String getLastModifier() {
return lastModifier;
}
public void setLastModifier(String lastModifier) {
this.lastModifier = lastModifier;
}
public ExternalBranchInfoVo withLastModified(OffsetDateTime lastModified) {
this.lastModified = lastModified;
return this;
}
/**
* 最后修改时间
* @return lastModified
*/
public OffsetDateTime getLastModified() {
return lastModified;
}
public void setLastModified(OffsetDateTime lastModified) {
this.lastModified = lastModified;
}
public ExternalBranchInfoVo withLastModifiedTimestamp(Long lastModifiedTimestamp) {
this.lastModifiedTimestamp = lastModifiedTimestamp;
return this;
}
/**
* 修改时间时间戳
* @return lastModifiedTimestamp
*/
public Long getLastModifiedTimestamp() {
return lastModifiedTimestamp;
}
public void setLastModifiedTimestamp(Long lastModifiedTimestamp) {
this.lastModifiedTimestamp = lastModifiedTimestamp;
}
public ExternalBranchInfoVo withCreationDate(OffsetDateTime creationDate) {
this.creationDate = creationDate;
return this;
}
/**
* 创建时间
* @return creationDate
*/
public OffsetDateTime getCreationDate() {
return creationDate;
}
public void setCreationDate(OffsetDateTime creationDate) {
this.creationDate = creationDate;
}
public ExternalBranchInfoVo withCreationDateTimestamp(Long creationDateTimestamp) {
this.creationDateTimestamp = creationDateTimestamp;
return this;
}
/**
* 创建时间时间戳
* @return creationDateTimestamp
*/
public Long getCreationDateTimestamp() {
return creationDateTimestamp;
}
public void setCreationDateTimestamp(Long creationDateTimestamp) {
this.creationDateTimestamp = creationDateTimestamp;
}
public ExternalBranchInfoVo withAuthorName(String authorName) {
this.authorName = authorName;
return this;
}
/**
* 创建人名称
* @return authorName
*/
public String getAuthorName() {
return authorName;
}
public void setAuthorName(String authorName) {
this.authorName = authorName;
}
public ExternalBranchInfoVo withIsBaseBranch(Integer isBaseBranch) {
this.isBaseBranch = isBaseBranch;
return this;
}
/**
* 是否为基线分支。0表示不是基线分支,1表示是基线分支。
* @return isBaseBranch
*/
public Integer getIsBaseBranch() {
return isBaseBranch;
}
public void setIsBaseBranch(Integer isBaseBranch) {
this.isBaseBranch = isBaseBranch;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ExternalBranchInfoVo that = (ExternalBranchInfoVo) obj;
return Objects.equals(this.id, that.id) && Objects.equals(this.type, that.type)
&& Objects.equals(this.author, that.author) && Objects.equals(this.name, that.name)
&& Objects.equals(this.region, that.region) && Objects.equals(this.lastModifier, that.lastModifier)
&& Objects.equals(this.lastModified, that.lastModified)
&& Objects.equals(this.lastModifiedTimestamp, that.lastModifiedTimestamp)
&& Objects.equals(this.creationDate, that.creationDate)
&& Objects.equals(this.creationDateTimestamp, that.creationDateTimestamp)
&& Objects.equals(this.authorName, that.authorName) && Objects.equals(this.isBaseBranch, that.isBaseBranch);
}
@Override
public int hashCode() {
return Objects.hash(id,
type,
author,
name,
region,
lastModifier,
lastModified,
lastModifiedTimestamp,
creationDate,
creationDateTimestamp,
authorName,
isBaseBranch);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ExternalBranchInfoVo {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" author: ").append(toIndentedString(author)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" region: ").append(toIndentedString(region)).append("\n");
sb.append(" lastModifier: ").append(toIndentedString(lastModifier)).append("\n");
sb.append(" lastModified: ").append(toIndentedString(lastModified)).append("\n");
sb.append(" lastModifiedTimestamp: ").append(toIndentedString(lastModifiedTimestamp)).append("\n");
sb.append(" creationDate: ").append(toIndentedString(creationDate)).append("\n");
sb.append(" creationDateTimestamp: ").append(toIndentedString(creationDateTimestamp)).append("\n");
sb.append(" authorName: ").append(toIndentedString(authorName)).append("\n");
sb.append(" isBaseBranch: ").append(toIndentedString(isBaseBranch)).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 ");
}
}