com.aliyun.dingtalkchengfeng_1_0.models.GetChildOrgListRequest 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class GetChildOrgListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*
* if can be null:
* false
*/
@NameInMap("deptCode")
public String deptCode;
public static GetChildOrgListRequest build(java.util.Map map) throws Exception {
GetChildOrgListRequest self = new GetChildOrgListRequest();
return TeaModel.build(map, self);
}
public GetChildOrgListRequest setDeptCode(String deptCode) {
this.deptCode = deptCode;
return this;
}
public String getDeptCode() {
return this.deptCode;
}
}