com.aliyun.sas20181203.models.DescribeDomainCountResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeDomainCountResponseBody extends TeaModel {
/**
* The ID of the request, which is used to locate and troubleshoot issues.
*
* example:
* C286491D-4A2F-589A-B63B-D2AD3DA9BD71
*/
@NameInMap("RequestId")
public String requestId;
/**
* The number of root domains.
*
* example:
* 5
*/
@NameInMap("RootDomainsCount")
public Integer rootDomainsCount;
/**
* The number of subdomains.
*
* example:
* 5
*/
@NameInMap("SubDomainsCount")
public Integer subDomainsCount;
/**
* The total number of entries returned.
*
* example:
* 10
*/
@NameInMap("TotalDomainsCount")
public Integer totalDomainsCount;
public static DescribeDomainCountResponseBody build(java.util.Map map) throws Exception {
DescribeDomainCountResponseBody self = new DescribeDomainCountResponseBody();
return TeaModel.build(map, self);
}
public DescribeDomainCountResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeDomainCountResponseBody setRootDomainsCount(Integer rootDomainsCount) {
this.rootDomainsCount = rootDomainsCount;
return this;
}
public Integer getRootDomainsCount() {
return this.rootDomainsCount;
}
public DescribeDomainCountResponseBody setSubDomainsCount(Integer subDomainsCount) {
this.subDomainsCount = subDomainsCount;
return this;
}
public Integer getSubDomainsCount() {
return this.subDomainsCount;
}
public DescribeDomainCountResponseBody setTotalDomainsCount(Integer totalDomainsCount) {
this.totalDomainsCount = totalDomainsCount;
return this;
}
public Integer getTotalDomainsCount() {
return this.totalDomainsCount;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy