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

com.aliyun.dingtalkworkflow_1_0.models.PremiumDelDirRequest 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.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class PremiumDelDirRequest extends TeaModel {
    /**
     * example:
     * 

oaDirIdxxx

*/ @NameInMap("dirId") public String dirId; /** *

This parameter is required.

* * example: *

user001

*/ @NameInMap("operateUserId") public String operateUserId; public static PremiumDelDirRequest build(java.util.Map map) throws Exception { PremiumDelDirRequest self = new PremiumDelDirRequest(); return TeaModel.build(map, self); } public PremiumDelDirRequest setDirId(String dirId) { this.dirId = dirId; return this; } public String getDirId() { return this.dirId; } public PremiumDelDirRequest setOperateUserId(String operateUserId) { this.operateUserId = operateUserId; return this; } public String getOperateUserId() { return this.operateUserId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy