com.aliyun.dingtalkworkflow_1_0.models.InsertOrUpdateDirRequest 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.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class InsertOrUpdateDirRequest extends TeaModel {
/**
* example:
* administeration
*/
@NameInMap("bizGroup")
public String bizGroup;
/**
* example:
* 分组描述信息
*/
@NameInMap("description")
public String description;
/**
* example:
* 行政管理
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* {"en_US":"test","ja_JP":"test","vi_VN":"test","zh_CN":"测试","zh_HK":"测试","zh_TW":"测试"}
*/
@NameInMap("name18n")
public String name18n;
/**
* This parameter is required.
*
* example:
* user001
*/
@NameInMap("operateUserId")
public String operateUserId;
public static InsertOrUpdateDirRequest build(java.util.Map map) throws Exception {
InsertOrUpdateDirRequest self = new InsertOrUpdateDirRequest();
return TeaModel.build(map, self);
}
public InsertOrUpdateDirRequest setBizGroup(String bizGroup) {
this.bizGroup = bizGroup;
return this;
}
public String getBizGroup() {
return this.bizGroup;
}
public InsertOrUpdateDirRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public InsertOrUpdateDirRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public InsertOrUpdateDirRequest setName18n(String name18n) {
this.name18n = name18n;
return this;
}
public String getName18n() {
return this.name18n;
}
public InsertOrUpdateDirRequest setOperateUserId(String operateUserId) {
this.operateUserId = operateUserId;
return this;
}
public String getOperateUserId() {
return this.operateUserId;
}
}