com.aliyun.dingtalkedu_1_0.models.DeleteGuardianRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class DeleteGuardianRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* manager123
*/
@NameInMap("operator")
public String operator;
/**
* This parameter is required.
*
* example:
* 1345
*/
@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;
}
}