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

com.aliyun.dingtalkedu_1_0.models.DeleteGuardianRequest 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 DeleteGuardianRequest extends TeaModel {
    // 钉钉企业管理员员工ID
    @NameInMap("operator")
    public String operator;

    // 学生ID
    @NameInMap("stuId")
    public String stuId;

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

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

    public DeleteGuardianRequest setStuId(String stuId) {
        this.stuId = stuId;
        return this;
    }
    public String getStuId() {
        return this.stuId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy