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

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

There is a newer version: 2.1.67
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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy