com.aliyun.sas20181203.models.CreateRdDefaultSyncListRequest 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 CreateRdDefaultSyncListRequest extends TeaModel {
/**
* example:
* fd-BwoXuf****,fd-CFamY7****
*/
@NameInMap("FolderIds")
public String folderIds;
public static CreateRdDefaultSyncListRequest build(java.util.Map map) throws Exception {
CreateRdDefaultSyncListRequest self = new CreateRdDefaultSyncListRequest();
return TeaModel.build(map, self);
}
public CreateRdDefaultSyncListRequest setFolderIds(String folderIds) {
this.folderIds = folderIds;
return this;
}
public String getFolderIds() {
return this.folderIds;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy