All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkexclusive_1_0.models.CreateRuleRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy