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

com.aliyun.dingtalkcontact_1_0.models.GetBranchAuthDataResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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