![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.ValidateUserRoleResponseBody 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 ValidateUserRoleResponseBody extends TeaModel {
@NameInMap("matchParentIdentity")
public Boolean matchParentIdentity;
@NameInMap("matchTeacherIdentity")
public Boolean matchTeacherIdentity;
public static ValidateUserRoleResponseBody build(java.util.Map map) throws Exception {
ValidateUserRoleResponseBody self = new ValidateUserRoleResponseBody();
return TeaModel.build(map, self);
}
public ValidateUserRoleResponseBody setMatchParentIdentity(Boolean matchParentIdentity) {
this.matchParentIdentity = matchParentIdentity;
return this;
}
public Boolean getMatchParentIdentity() {
return this.matchParentIdentity;
}
public ValidateUserRoleResponseBody setMatchTeacherIdentity(Boolean matchTeacherIdentity) {
this.matchTeacherIdentity = matchTeacherIdentity;
return this;
}
public Boolean getMatchTeacherIdentity() {
return this.matchTeacherIdentity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy