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.30
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 {
    // result
    @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 {
        // 字段code
        @NameInMap("fieldCode")
        public String fieldCode;

        // 字段名称
        @NameInMap("fieldName")
        public String fieldName;

        // 字段值
        @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 - 2024 Weber Informatics LLC | Privacy Policy