com.aliyun.sas20181203.models.DescribeVolDingdingMessageRequest 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 DescribeVolDingdingMessageRequest extends TeaModel {
/**
* example:
* zh
*/
@NameInMap("Lang")
public String lang;
/**
* example:
* 1.2.XX.XX
*/
@NameInMap("SourceIp")
public String sourceIp;
public static DescribeVolDingdingMessageRequest build(java.util.Map map) throws Exception {
DescribeVolDingdingMessageRequest self = new DescribeVolDingdingMessageRequest();
return TeaModel.build(map, self);
}
public DescribeVolDingdingMessageRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
public DescribeVolDingdingMessageRequest setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
return this;
}
public String getSourceIp() {
return this.sourceIp;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy