com.aliyun.dingtalkflashmsg_1_0.models.DeletePlguinRuleRequest 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.dingtalkflashmsg_1_0.models;
import com.aliyun.tea.*;
public class DeletePlguinRuleRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizIdList")
public java.util.List bizIdList;
/**
* This parameter is required.
*
* example:
* 0847493113802787
*/
@NameInMap("userId")
public String userId;
public static DeletePlguinRuleRequest build(java.util.Map map) throws Exception {
DeletePlguinRuleRequest self = new DeletePlguinRuleRequest();
return TeaModel.build(map, self);
}
public DeletePlguinRuleRequest setBizIdList(java.util.List bizIdList) {
this.bizIdList = bizIdList;
return this;
}
public java.util.List getBizIdList() {
return this.bizIdList;
}
public DeletePlguinRuleRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}