![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.CustomizeContactDeptInfoRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CustomizeContactDeptInfoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*/
@NameInMap("deptId")
public Long deptId;
public static CustomizeContactDeptInfoRequest build(java.util.Map map) throws Exception {
CustomizeContactDeptInfoRequest self = new CustomizeContactDeptInfoRequest();
return TeaModel.build(map, self);
}
public CustomizeContactDeptInfoRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CustomizeContactDeptInfoRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy