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

com.aliyun.dingtalkcrm_1_0.models.BatchAddContactsRequest 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.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class BatchAddContactsRequest extends TeaModel {
    // 操作人userId
    @NameInMap("operatorUserId")
    public String operatorUserId;

    // 关系数据列表。
    @NameInMap("relationList")
    public java.util.List relationList;

    public static BatchAddContactsRequest build(java.util.Map map) throws Exception {
        BatchAddContactsRequest self = new BatchAddContactsRequest();
        return TeaModel.build(map, self);
    }

    public BatchAddContactsRequest setOperatorUserId(String operatorUserId) {
        this.operatorUserId = operatorUserId;
        return this;
    }
    public String getOperatorUserId() {
        return this.operatorUserId;
    }

    public BatchAddContactsRequest setRelationList(java.util.List relationList) {
        this.relationList = relationList;
        return this;
    }
    public java.util.List getRelationList() {
        return this.relationList;
    }

    public static class BatchAddContactsRequestRelationListBizDataList extends TeaModel {
        // 模型字段extendValue。
        @NameInMap("extendValue")
        public String extendValue;

        // 模型字段id。
        @NameInMap("key")
        public String key;

        // 模型字段value。
        @NameInMap("value")
        public String value;

        public static BatchAddContactsRequestRelationListBizDataList build(java.util.Map map) throws Exception {
            BatchAddContactsRequestRelationListBizDataList self = new BatchAddContactsRequestRelationListBizDataList();
            return TeaModel.build(map, self);
        }

        public BatchAddContactsRequestRelationListBizDataList setExtendValue(String extendValue) {
            this.extendValue = extendValue;
            return this;
        }
        public String getExtendValue() {
            return this.extendValue;
        }

        public BatchAddContactsRequestRelationListBizDataList setKey(String key) {
            this.key = key;
            return this;
        }
        public String getKey() {
            return this.key;
        }

        public BatchAddContactsRequestRelationListBizDataList setValue(String value) {
            this.value = value;
            return this;
        }
        public String getValue() {
            return this.value;
        }

    }

    public static class BatchAddContactsRequestRelationList extends TeaModel {
        // 关系模型数据。
        @NameInMap("bizDataList")
        public java.util.List bizDataList;

        // 扩展业务字段。
        @NameInMap("bizExtMap")
        public java.util.Map bizExtMap;

        public static BatchAddContactsRequestRelationList build(java.util.Map map) throws Exception {
            BatchAddContactsRequestRelationList self = new BatchAddContactsRequestRelationList();
            return TeaModel.build(map, self);
        }

        public BatchAddContactsRequestRelationList setBizDataList(java.util.List bizDataList) {
            this.bizDataList = bizDataList;
            return this;
        }
        public java.util.List getBizDataList() {
            return this.bizDataList;
        }

        public BatchAddContactsRequestRelationList setBizExtMap(java.util.Map bizExtMap) {
            this.bizExtMap = bizExtMap;
            return this;
        }
        public java.util.Map getBizExtMap() {
            return this.bizExtMap;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy