com.aliyun.sddp20190103.models.StopMaskingProcessRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sddp20190103.models;
import com.aliyun.tea.*;
public class StopMaskingProcessRequest extends TeaModel {
/**
* The unique ID of the de-identification task. You can query the task ID by calling the DescribeDataMaskingTasks operation.
* This parameter is required.
*
* example:
* 3
*/
@NameInMap("Id")
public Long id;
/**
* The language of the content within the request and response. Valid values:
*
* - zh_cn: Simplified Chinese (default)
* - en_us: English
*
*
* example:
* zh_cn
*/
@NameInMap("Lang")
public String lang;
public static StopMaskingProcessRequest build(java.util.Map map) throws Exception {
StopMaskingProcessRequest self = new StopMaskingProcessRequest();
return TeaModel.build(map, self);
}
public StopMaskingProcessRequest setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public StopMaskingProcessRequest setLang(String lang) {
this.lang = lang;
return this;
}
public String getLang() {
return this.lang;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy