com.aliyun.tdsr20200101.models.PublishSceneResponseBody 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 PublishSceneResponseBody extends TeaModel {
// 返回码
@NameInMap("Code")
public Long code;
// 错误消息
@NameInMap("Message")
public String message;
// 预览链接
@NameInMap("PreviewUrl")
public String previewUrl;
// 请求ID,与入参requestId对应
@NameInMap("RequestId")
public String requestId;
// 是否请求成功
@NameInMap("Success")
public Boolean success;
public static PublishSceneResponseBody build(java.util.Map map) throws Exception {
PublishSceneResponseBody self = new PublishSceneResponseBody();
return TeaModel.build(map, self);
}
public PublishSceneResponseBody setCode(Long code) {
this.code = code;
return this;
}
public Long getCode() {
return this.code;
}
public PublishSceneResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PublishSceneResponseBody setPreviewUrl(String previewUrl) {
this.previewUrl = previewUrl;
return this;
}
public String getPreviewUrl() {
return this.previewUrl;
}
public PublishSceneResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PublishSceneResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}