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