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

com.aliyun.dingtalkcrm_1_0.models.CreateCustomerResponseBody 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 CreateCustomerResponseBody extends TeaModel {
    // 联系人保存结果
    @NameInMap("contacts")
    public java.util.List contacts;

    // 客户实例id
    @NameInMap("customerInstanceId")
    public String customerInstanceId;

    // 保存客户类型
    @NameInMap("objectType")
    public String objectType;

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

    public CreateCustomerResponseBody setContacts(java.util.List contacts) {
        this.contacts = contacts;
        return this;
    }
    public java.util.List getContacts() {
        return this.contacts;
    }

    public CreateCustomerResponseBody setCustomerInstanceId(String customerInstanceId) {
        this.customerInstanceId = customerInstanceId;
        return this;
    }
    public String getCustomerInstanceId() {
        return this.customerInstanceId;
    }

    public CreateCustomerResponseBody setObjectType(String objectType) {
        this.objectType = objectType;
        return this;
    }
    public String getObjectType() {
        return this.objectType;
    }

    public static class CreateCustomerResponseBodyContacts extends TeaModel {
        // 联系人实例id
        @NameInMap("contactInstanceId")
        public String contactInstanceId;

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

        public CreateCustomerResponseBodyContacts setContactInstanceId(String contactInstanceId) {
            this.contactInstanceId = contactInstanceId;
            return this;
        }
        public String getContactInstanceId() {
            return this.contactInstanceId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy