com.aliyun.dingtalkcrm_1_0.models.ListCrmPersonalCustomersRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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 {
// 数据客户列表
@NameInMap("body")
public java.util.List body;
// 操作人用户ID
@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;
}
}