com.aliyun.dingtalkcrm_1_0.models.DeleteCrmFormInstanceRequest 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 DeleteCrmFormInstanceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* manager123
*/
@NameInMap("currentOperatorUserId")
public String currentOperatorUserId;
/**
* This parameter is required.
*
* example:
* PROC-123
*/
@NameInMap("name")
public String name;
public static DeleteCrmFormInstanceRequest build(java.util.Map map) throws Exception {
DeleteCrmFormInstanceRequest self = new DeleteCrmFormInstanceRequest();
return TeaModel.build(map, self);
}
public DeleteCrmFormInstanceRequest setCurrentOperatorUserId(String currentOperatorUserId) {
this.currentOperatorUserId = currentOperatorUserId;
return this;
}
public String getCurrentOperatorUserId() {
return this.currentOperatorUserId;
}
public DeleteCrmFormInstanceRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}