com.aliyun.tdsr20200101.models.GetSingleConnDataResponseBody 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 GetSingleConnDataResponseBody extends TeaModel {
// 返回码
@NameInMap("Code")
public Long code;
// 关联信息
@NameInMap("List")
public java.util.List list;
// 错误消息
@NameInMap("Message")
public String message;
// 请求ID,与入参requestId对应
@NameInMap("RequestId")
public String requestId;
// 是否请求成功
@NameInMap("Success")
public Boolean success;
// 版本
@NameInMap("Version")
public String version;
public static GetSingleConnDataResponseBody build(java.util.Map map) throws Exception {
GetSingleConnDataResponseBody self = new GetSingleConnDataResponseBody();
return TeaModel.build(map, self);
}
public GetSingleConnDataResponseBody setCode(Long code) {
this.code = code;
return this;
}
public Long getCode() {
return this.code;
}
public GetSingleConnDataResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public GetSingleConnDataResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetSingleConnDataResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetSingleConnDataResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public GetSingleConnDataResponseBody setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
public static class GetSingleConnDataResponseBodyList extends TeaModel {
// ID
@NameInMap("Id")
public String id;
// 关联ID
@NameInMap("MapId")
public String mapId;
// outer:外关联 inner:内关联 stair:楼梯关联
@NameInMap("Type")
public String type;
public static GetSingleConnDataResponseBodyList build(java.util.Map map) throws Exception {
GetSingleConnDataResponseBodyList self = new GetSingleConnDataResponseBodyList();
return TeaModel.build(map, self);
}
public GetSingleConnDataResponseBodyList setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetSingleConnDataResponseBodyList setMapId(String mapId) {
this.mapId = mapId;
return this;
}
public String getMapId() {
return this.mapId;
}
public GetSingleConnDataResponseBodyList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}