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

com.aliyun.dingtalkdoc_2_0.models.RenameDentryRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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