com.aliyun.dingtalkedu_1_0.models.GetEduUserIdentityResponseBody 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 GetEduUserIdentityResponseBody extends TeaModel {
@NameInMap("data")
public GetEduUserIdentityResponseBodyData data;
/**
* This parameter is required.
*/
@NameInMap("success")
public Boolean success;
public static GetEduUserIdentityResponseBody build(java.util.Map map) throws Exception {
GetEduUserIdentityResponseBody self = new GetEduUserIdentityResponseBody();
return TeaModel.build(map, self);
}
public GetEduUserIdentityResponseBody setData(GetEduUserIdentityResponseBodyData data) {
this.data = data;
return this;
}
public GetEduUserIdentityResponseBodyData getData() {
return this.data;
}
public GetEduUserIdentityResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetEduUserIdentityResponseBodyData extends TeaModel {
@NameInMap("matchGuardianRule")
public Boolean matchGuardianRule;
@NameInMap("matchTeacherRule")
public Boolean matchTeacherRule;
@NameInMap("unionId")
public String unionId;
public static GetEduUserIdentityResponseBodyData build(java.util.Map map) throws Exception {
GetEduUserIdentityResponseBodyData self = new GetEduUserIdentityResponseBodyData();
return TeaModel.build(map, self);
}
public GetEduUserIdentityResponseBodyData setMatchGuardianRule(Boolean matchGuardianRule) {
this.matchGuardianRule = matchGuardianRule;
return this;
}
public Boolean getMatchGuardianRule() {
return this.matchGuardianRule;
}
public GetEduUserIdentityResponseBodyData setMatchTeacherRule(Boolean matchTeacherRule) {
this.matchTeacherRule = matchTeacherRule;
return this;
}
public Boolean getMatchTeacherRule() {
return this.matchTeacherRule;
}
public GetEduUserIdentityResponseBodyData setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
}