com.huaweicloud.sdk.csms.v1.model.Notification Maven / Gradle / Ivy
package com.huaweicloud.sdk.csms.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* 通知主题对象。
*/
public class Notification {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "target_type")
private String targetType;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "target_id")
private String targetId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "target_name")
private String targetName;
public Notification withTargetType(String targetType) {
this.targetType = targetType;
return this;
}
/**
* 事件通知的对象类型。
* @return targetType
*/
public String getTargetType() {
return targetType;
}
public void setTargetType(String targetType) {
this.targetType = targetType;
}
public Notification withTargetId(String targetId) {
this.targetId = targetId;
return this;
}
/**
* 事件通知的对象ID。
* @return targetId
*/
public String getTargetId() {
return targetId;
}
public void setTargetId(String targetId) {
this.targetId = targetId;
}
public Notification withTargetName(String targetName) {
this.targetName = targetName;
return this;
}
/**
* 事件通知的对象名称。
* @return targetName
*/
public String getTargetName() {
return targetName;
}
public void setTargetName(String targetName) {
this.targetName = targetName;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
Notification that = (Notification) obj;
return Objects.equals(this.targetType, that.targetType) && Objects.equals(this.targetId, that.targetId)
&& Objects.equals(this.targetName, that.targetName);
}
@Override
public int hashCode() {
return Objects.hash(targetType, targetId, targetName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Notification {\n");
sb.append(" targetType: ").append(toIndentedString(targetType)).append("\n");
sb.append(" targetId: ").append(toIndentedString(targetId)).append("\n");
sb.append(" targetName: ").append(toIndentedString(targetName)).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 ");
}
}