com.aliyun.dingtalkworkflow_1_0.models.InsertOrUpdateDirResponseBody 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 InsertOrUpdateDirResponseBody extends TeaModel {
@NameInMap("result")
public InsertOrUpdateDirResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static InsertOrUpdateDirResponseBody build(java.util.Map map) throws Exception {
InsertOrUpdateDirResponseBody self = new InsertOrUpdateDirResponseBody();
return TeaModel.build(map, self);
}
public InsertOrUpdateDirResponseBody setResult(InsertOrUpdateDirResponseBodyResult result) {
this.result = result;
return this;
}
public InsertOrUpdateDirResponseBodyResult getResult() {
return this.result;
}
public InsertOrUpdateDirResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class InsertOrUpdateDirResponseBodyResult extends TeaModel {
/**
* example:
* {应用appId}_administeration
*/
@NameInMap("bizGroup")
public String bizGroup;
/**
* example:
* oaDirIdxxx
*/
@NameInMap("dirId")
public String dirId;
public static InsertOrUpdateDirResponseBodyResult build(java.util.Map map) throws Exception {
InsertOrUpdateDirResponseBodyResult self = new InsertOrUpdateDirResponseBodyResult();
return TeaModel.build(map, self);
}
public InsertOrUpdateDirResponseBodyResult setBizGroup(String bizGroup) {
this.bizGroup = bizGroup;
return this;
}
public String getBizGroup() {
return this.bizGroup;
}
public InsertOrUpdateDirResponseBodyResult setDirId(String dirId) {
this.dirId = dirId;
return this;
}
public String getDirId() {
return this.dirId;
}
}
}