com.antgroup.antchain.openapi.deps.models.GetWorkspaceResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class GetWorkspaceResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 创建时间
@NameInMap("create_time")
public String createTime;
// workspace 名称
@NameInMap("id")
public String id;
// workspace 显示名称
@NameInMap("name")
public String name;
// 网络类型
@NameInMap("network_type")
public String networkType;
// workspace所在regionId
@NameInMap("region")
public String region;
// 所属租户名称
@NameInMap("tenant")
public String tenant;
// 最近更新时间
@NameInMap("update_time")
public String updateTime;
// workspace所在zoneId列表
@NameInMap("zones")
public java.util.List zones;
public static GetWorkspaceResponse build(java.util.Map map) throws Exception {
GetWorkspaceResponse self = new GetWorkspaceResponse();
return TeaModel.build(map, self);
}
public GetWorkspaceResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public GetWorkspaceResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public GetWorkspaceResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public GetWorkspaceResponse setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetWorkspaceResponse setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetWorkspaceResponse setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetWorkspaceResponse setNetworkType(String networkType) {
this.networkType = networkType;
return this;
}
public String getNetworkType() {
return this.networkType;
}
public GetWorkspaceResponse setRegion(String region) {
this.region = region;
return this;
}
public String getRegion() {
return this.region;
}
public GetWorkspaceResponse setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public GetWorkspaceResponse setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public String getUpdateTime() {
return this.updateTime;
}
public GetWorkspaceResponse setZones(java.util.List zones) {
this.zones = zones;
return this;
}
public java.util.List getZones() {
return this.zones;
}
}