com.aliyun.dingtalkexclusive_1_0.models.CreateRuleRequest 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 CreateRuleRequest extends TeaModel {
@NameInMap("customPlan")
public CreateRuleRequestCustomPlan customPlan;
public static CreateRuleRequest build(java.util.Map map) throws Exception {
CreateRuleRequest self = new CreateRuleRequest();
return TeaModel.build(map, self);
}
public CreateRuleRequest setCustomPlan(CreateRuleRequestCustomPlan customPlan) {
this.customPlan = customPlan;
return this;
}
public CreateRuleRequestCustomPlan getCustomPlan() {
return this.customPlan;
}
public static class CreateRuleRequestCustomPlan extends TeaModel {
@NameInMap("currentCategoryList")
public java.util.List currentCategoryList;
@NameInMap("deptIds")
public java.util.List deptIds;
/**
* example:
* test
*/
@NameInMap("planName")
public String planName;
@NameInMap("unSelectCategoryList")
public java.util.List unSelectCategoryList;
@NameInMap("userIds")
public java.util.List userIds;
public static CreateRuleRequestCustomPlan build(java.util.Map map) throws Exception {
CreateRuleRequestCustomPlan self = new CreateRuleRequestCustomPlan();
return TeaModel.build(map, self);
}
public CreateRuleRequestCustomPlan setCurrentCategoryList(java.util.List currentCategoryList) {
this.currentCategoryList = currentCategoryList;
return this;
}
public java.util.List getCurrentCategoryList() {
return this.currentCategoryList;
}
public CreateRuleRequestCustomPlan setDeptIds(java.util.List deptIds) {
this.deptIds = deptIds;
return this;
}
public java.util.List getDeptIds() {
return this.deptIds;
}
public CreateRuleRequestCustomPlan setPlanName(String planName) {
this.planName = planName;
return this;
}
public String getPlanName() {
return this.planName;
}
public CreateRuleRequestCustomPlan setUnSelectCategoryList(java.util.List unSelectCategoryList) {
this.unSelectCategoryList = unSelectCategoryList;
return this;
}
public java.util.List getUnSelectCategoryList() {
return this.unSelectCategoryList;
}
public CreateRuleRequestCustomPlan setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}
}