com.huaweicloud.sdk.cloudtest.v1.model.CreateInfoVo 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 CreateInfoVo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "time")
private String time;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "timestamp")
private Long timestamp;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "user_id")
private String userId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "user_name")
private String userName;
public CreateInfoVo withTime(String time) {
this.time = time;
return this;
}
/**
* 创建时间
* @return time
*/
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public CreateInfoVo withTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* 创建时间时间戳
* @return timestamp
*/
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public CreateInfoVo withUserId(String userId) {
this.userId = userId;
return this;
}
/**
* 用户ID
* @return userId
*/
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public CreateInfoVo withUserName(String userName) {
this.userName = userName;
return this;
}
/**
* 用户名称
* @return userName
*/
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
CreateInfoVo that = (CreateInfoVo) obj;
return Objects.equals(this.time, that.time) && Objects.equals(this.timestamp, that.timestamp)
&& Objects.equals(this.userId, that.userId) && Objects.equals(this.userName, that.userName);
}
@Override
public int hashCode() {
return Objects.hash(time, timestamp, userId, userName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateInfoVo {\n");
sb.append(" time: ").append(toIndentedString(time)).append("\n");
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
sb.append(" userId: ").append(toIndentedString(userId)).append("\n");
sb.append(" userName: ").append(toIndentedString(userName)).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 ");
}
}