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