![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcontact_1_0.models.GetBranchAuthDataResponseBody 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class GetBranchAuthDataResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static GetBranchAuthDataResponseBody build(java.util.Map map) throws Exception {
GetBranchAuthDataResponseBody self = new GetBranchAuthDataResponseBody();
return TeaModel.build(map, self);
}
public GetBranchAuthDataResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class GetBranchAuthDataResponseBodyResult extends TeaModel {
/**
* example:
* teacherCnt
*/
@NameInMap("fieldCode")
public String fieldCode;
/**
* example:
* 老师数量
*/
@NameInMap("fieldName")
public String fieldName;
/**
* example:
* 120
*/
@NameInMap("fieldValue")
public String fieldValue;
public static GetBranchAuthDataResponseBodyResult build(java.util.Map map) throws Exception {
GetBranchAuthDataResponseBodyResult self = new GetBranchAuthDataResponseBodyResult();
return TeaModel.build(map, self);
}
public GetBranchAuthDataResponseBodyResult setFieldCode(String fieldCode) {
this.fieldCode = fieldCode;
return this;
}
public String getFieldCode() {
return this.fieldCode;
}
public GetBranchAuthDataResponseBodyResult setFieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
public String getFieldName() {
return this.fieldName;
}
public GetBranchAuthDataResponseBodyResult setFieldValue(String fieldValue) {
this.fieldValue = fieldValue;
return this;
}
public String getFieldValue() {
return this.fieldValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy