
com.aliyun.dingtalkdoc_1_0.models.DeleteRangeProtectionRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class DeleteRangeProtectionRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("operatorId")
public String operatorId;
public static DeleteRangeProtectionRequest build(java.util.Map map) throws Exception {
DeleteRangeProtectionRequest self = new DeleteRangeProtectionRequest();
return TeaModel.build(map, self);
}
public DeleteRangeProtectionRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy