com.aliyun.dms_enterprise20181101.models.GetUserActiveTenantResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class GetUserActiveTenantResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetUserActiveTenantResponseBody body;
public static GetUserActiveTenantResponse build(java.util.Map map) throws Exception {
GetUserActiveTenantResponse self = new GetUserActiveTenantResponse();
return TeaModel.build(map, self);
}
public GetUserActiveTenantResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public GetUserActiveTenantResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetUserActiveTenantResponse setBody(GetUserActiveTenantResponseBody body) {
this.body = body;
return this;
}
public GetUserActiveTenantResponseBody getBody() {
return this.body;
}
}