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

com.aliyun.dingtalkcrm_1_0.models.ListCrmPersonalCustomersRequest Maven / Gradle / Ivy

The 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 ListCrmPersonalCustomersRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("body") public java.util.List body; @NameInMap("currentOperatorUserId") public String currentOperatorUserId; @NameInMap("relationType") public String relationType; public static ListCrmPersonalCustomersRequest build(java.util.Map map) throws Exception { ListCrmPersonalCustomersRequest self = new ListCrmPersonalCustomersRequest(); return TeaModel.build(map, self); } public ListCrmPersonalCustomersRequest setBody(java.util.List body) { this.body = body; return this; } public java.util.List getBody() { return this.body; } public ListCrmPersonalCustomersRequest setCurrentOperatorUserId(String currentOperatorUserId) { this.currentOperatorUserId = currentOperatorUserId; return this; } public String getCurrentOperatorUserId() { return this.currentOperatorUserId; } public ListCrmPersonalCustomersRequest setRelationType(String relationType) { this.relationType = relationType; return this; } public String getRelationType() { return this.relationType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy