![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdoc_2_0.models.RenameDentryRequest 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.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class RenameDentryRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*/
@NameInMap("operatorId")
public String operatorId;
public static RenameDentryRequest build(java.util.Map map) throws Exception {
RenameDentryRequest self = new RenameDentryRequest();
return TeaModel.build(map, self);
}
public RenameDentryRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public RenameDentryRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy