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