com.aliyun.tdsr20200101.models.UpdateProjectResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tdsr20200101 Show documentation
Show all versions of tdsr20200101 Show documentation
Alibaba Cloud 3D space reconstruction (20200101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.tdsr20200101.models;
import com.aliyun.tea.*;
public class UpdateProjectResponseBody extends TeaModel {
// 返回码
@NameInMap("Code")
public Long code;
// 错误消息
@NameInMap("Message")
public String message;
// 请求ID,与入参requestId对应
@NameInMap("RequestId")
public String requestId;
// 是否请求成功
@NameInMap("Success")
public Boolean success;
public static UpdateProjectResponseBody build(java.util.Map map) throws Exception {
UpdateProjectResponseBody self = new UpdateProjectResponseBody();
return TeaModel.build(map, self);
}
public UpdateProjectResponseBody setCode(Long code) {
this.code = code;
return this;
}
public Long getCode() {
return this.code;
}
public UpdateProjectResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdateProjectResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpdateProjectResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}