com.huaweicloud.sdk.koomessage.v1.model.ShowAimMsgSignatureFileInfoResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.koomessage.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.Objects;
/**
* Response Object
*/
public class ShowAimMsgSignatureFileInfoResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "file_id")
private String fileId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "file_name")
private String fileName;
public ShowAimMsgSignatureFileInfoResponse withFileId(String fileId) {
this.fileId = fileId;
return this;
}
/**
* 文件ID。
* @return fileId
*/
public String getFileId() {
return fileId;
}
public void setFileId(String fileId) {
this.fileId = fileId;
}
public ShowAimMsgSignatureFileInfoResponse withFileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* 文件名称。
* @return fileName
*/
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ShowAimMsgSignatureFileInfoResponse that = (ShowAimMsgSignatureFileInfoResponse) obj;
return Objects.equals(this.fileId, that.fileId) && Objects.equals(this.fileName, that.fileName);
}
@Override
public int hashCode() {
return Objects.hash(fileId, fileName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowAimMsgSignatureFileInfoResponse {\n");
sb.append(" fileId: ").append(toIndentedString(fileId)).append("\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).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 ");
}
}