com.aliyun.dingtalkexclusive_1_0.models.CreateDlpTaskRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class CreateDlpTaskRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("dentryId")
public String dentryId;
/**
* This parameter is required.
*/
@NameInMap("spaceId")
public String spaceId;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static CreateDlpTaskRequest build(java.util.Map map) throws Exception {
CreateDlpTaskRequest self = new CreateDlpTaskRequest();
return TeaModel.build(map, self);
}
public CreateDlpTaskRequest setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public CreateDlpTaskRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public CreateDlpTaskRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}