com.aliyun.waf_openapi20211001.models.DescribeSensitiveOutboundDistributionResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waf_openapi20211001 Show documentation
Show all versions of waf_openapi20211001 Show documentation
Alibaba Cloud waf-openapi (20211001) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.waf_openapi20211001.models;
import com.aliyun.tea.*;
public class DescribeSensitiveOutboundDistributionResponseBody extends TeaModel {
/**
* The traffic distribution of personal information records involved in cross-border data transfer.
*/
@NameInMap("Data")
public java.util.List data;
/**
* The request ID.
*
* example:
* D7861F61-5B61-46CE-A47C-6B19160D5EB0
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeSensitiveOutboundDistributionResponseBody build(java.util.Map map) throws Exception {
DescribeSensitiveOutboundDistributionResponseBody self = new DescribeSensitiveOutboundDistributionResponseBody();
return TeaModel.build(map, self);
}
public DescribeSensitiveOutboundDistributionResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public DescribeSensitiveOutboundDistributionResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class DescribeSensitiveOutboundDistributionResponseBodyData extends TeaModel {
/**
* The country to which the data is transferred.
*
* example:
* US
*/
@NameInMap("Country")
public String country;
/**
* The number of personal information records involved in cross-border data transfer.
*
* example:
* 213
*/
@NameInMap("InfoOutboundCount")
public Long infoOutboundCount;
/**
* The number of sensitive information records involved in cross-border data transfer.
*
* example:
* 144
*/
@NameInMap("SensitiveOutboundCount")
public Long sensitiveOutboundCount;
public static DescribeSensitiveOutboundDistributionResponseBodyData build(java.util.Map map) throws Exception {
DescribeSensitiveOutboundDistributionResponseBodyData self = new DescribeSensitiveOutboundDistributionResponseBodyData();
return TeaModel.build(map, self);
}
public DescribeSensitiveOutboundDistributionResponseBodyData setCountry(String country) {
this.country = country;
return this;
}
public String getCountry() {
return this.country;
}
public DescribeSensitiveOutboundDistributionResponseBodyData setInfoOutboundCount(Long infoOutboundCount) {
this.infoOutboundCount = infoOutboundCount;
return this;
}
public Long getInfoOutboundCount() {
return this.infoOutboundCount;
}
public DescribeSensitiveOutboundDistributionResponseBodyData setSensitiveOutboundCount(Long sensitiveOutboundCount) {
this.sensitiveOutboundCount = sensitiveOutboundCount;
return this;
}
public Long getSensitiveOutboundCount() {
return this.sensitiveOutboundCount;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy