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

com.aliyun.dingtalkedu_1_0.models.CreateCustomClassRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class CreateCustomClassRequest extends TeaModel {
    // 班级信息
    @NameInMap("customClass")
    public CreateCustomClassRequestCustomClass customClass;

    // 钉钉企业管理员工ID
    @NameInMap("operator")
    public String operator;

    // 上级部门ID
    @NameInMap("superId")
    public Long superId;

    public static CreateCustomClassRequest build(java.util.Map map) throws Exception {
        CreateCustomClassRequest self = new CreateCustomClassRequest();
        return TeaModel.build(map, self);
    }

    public CreateCustomClassRequest setCustomClass(CreateCustomClassRequestCustomClass customClass) {
        this.customClass = customClass;
        return this;
    }
    public CreateCustomClassRequestCustomClass getCustomClass() {
        return this.customClass;
    }

    public CreateCustomClassRequest setOperator(String operator) {
        this.operator = operator;
        return this;
    }
    public String getOperator() {
        return this.operator;
    }

    public CreateCustomClassRequest setSuperId(Long superId) {
        this.superId = superId;
        return this;
    }
    public Long getSuperId() {
        return this.superId;
    }

    public static class CreateCustomClassRequestCustomClass extends TeaModel {
        // 班级名称
        @NameInMap("name")
        public String name;

        public static CreateCustomClassRequestCustomClass build(java.util.Map map) throws Exception {
            CreateCustomClassRequestCustomClass self = new CreateCustomClassRequestCustomClass();
            return TeaModel.build(map, self);
        }

        public CreateCustomClassRequestCustomClass setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy