com.aliyun.tdsr20200101.models.DetailSubSceneResponse 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 DetailSubSceneResponse extends TeaModel {
@NameInMap("headers")
@Validation(required = true)
public java.util.Map headers;
@NameInMap("body")
@Validation(required = true)
public DetailSubSceneResponseBody body;
public static DetailSubSceneResponse build(java.util.Map map) throws Exception {
DetailSubSceneResponse self = new DetailSubSceneResponse();
return TeaModel.build(map, self);
}
public DetailSubSceneResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public DetailSubSceneResponse setBody(DetailSubSceneResponseBody body) {
this.body = body;
return this;
}
public DetailSubSceneResponseBody getBody() {
return this.body;
}
}