com.huaweicloud.sdk.koomessage.v1.model.VarInfo Maven / Gradle / Ivy
package com.huaweicloud.sdk.koomessage.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* VarInfo
*/
public class VarInfo {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private String name;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "type")
private String type;
public VarInfo withName(String name) {
this.name = name;
return this;
}
/**
* 动参变量占位符名称。 > 格式:#p_N#(N表示第几个参数,与模板文件占位名称保持一致),如:#p_1#。
* @return name
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public VarInfo withType(String type) {
this.type = type;
return this;
}
/**
* 动参变量类型。 - 类型为文字:txt - 类型为图片:jpg/jpeg/png/gif - 类型为音频:mp3/wav - 类型为视频:mp4/3gp
* @return type
*/
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
VarInfo that = (VarInfo) obj;
return Objects.equals(this.name, that.name) && Objects.equals(this.type, that.type);
}
@Override
public int hashCode() {
return Objects.hash(name, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VarInfo {\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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 ");
}
}