com.aliyun.sas20181203.models.GetHoneypotStatisticsRequest 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 GetHoneypotStatisticsRequest extends TeaModel {
/**
* The language of the content within the request and response. Valid values:
*
* - zh: Chinese.
* - en: English.
*
*
* example:
* zh
*/
@NameInMap("Lang")
public String lang;
public static GetHoneypotStatisticsRequest build(java.util.Map map) throws Exception {
GetHoneypotStatisticsRequest self = new GetHoneypotStatisticsRequest();
return TeaModel.build(map, self);
}
public GetHoneypotStatisticsRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy