![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcrm_1_0.models.DeleteCrmPersonalCustomerRequest 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 DeleteCrmPersonalCustomerRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("currentOperatorUserId")
public String currentOperatorUserId;
@NameInMap("relationType")
public String relationType;
public static DeleteCrmPersonalCustomerRequest build(java.util.Map map) throws Exception {
DeleteCrmPersonalCustomerRequest self = new DeleteCrmPersonalCustomerRequest();
return TeaModel.build(map, self);
}
public DeleteCrmPersonalCustomerRequest setCurrentOperatorUserId(String currentOperatorUserId) {
this.currentOperatorUserId = currentOperatorUserId;
return this;
}
public String getCurrentOperatorUserId() {
return this.currentOperatorUserId;
}
public DeleteCrmPersonalCustomerRequest setRelationType(String relationType) {
this.relationType = relationType;
return this;
}
public String getRelationType() {
return this.relationType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy