com.aliyun.sas20181203.models.MarkMonitorAccountsRequest 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 MarkMonitorAccountsRequest extends TeaModel {
/**
* The IDs of the members.
* This parameter is required.
*
* example:
* 131331822340XXXX,140649175187XXXX
*/
@NameInMap("AccountIds")
public String accountIds;
public static MarkMonitorAccountsRequest build(java.util.Map map) throws Exception {
MarkMonitorAccountsRequest self = new MarkMonitorAccountsRequest();
return TeaModel.build(map, self);
}
public MarkMonitorAccountsRequest setAccountIds(String accountIds) {
this.accountIds = accountIds;
return this;
}
public String getAccountIds() {
return this.accountIds;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy