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