com.aliyun.sas20181203.models.DescribeSuspEventUserSettingRequest 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 DescribeSuspEventUserSettingRequest extends TeaModel {
/**
* The ID of the request source. Set the value to sas.
*
* example:
* sas
*/
@NameInMap("From")
public String from;
/**
* The ID. You do not need to specify this parameter.
*
* example:
* 123
*/
@NameInMap("Id")
public Integer id;
/**
* The IP address of the request. You do not need to specify this parameter.
*
* example:
* 127.0.XX.XX
*/
@NameInMap("SourceIp")
public String sourceIp;
public static DescribeSuspEventUserSettingRequest build(java.util.Map map) throws Exception {
DescribeSuspEventUserSettingRequest self = new DescribeSuspEventUserSettingRequest();
return TeaModel.build(map, self);
}
public DescribeSuspEventUserSettingRequest setFrom(String from) {
this.from = from;
return this;
}
public String getFrom() {
return this.from;
}
public DescribeSuspEventUserSettingRequest setId(Integer id) {
this.id = id;
return this;
}
public Integer getId() {
return this.id;
}
public DescribeSuspEventUserSettingRequest setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
return this;
}
public String getSourceIp() {
return this.sourceIp;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy