![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkchengfeng_1_0.models.OpenTeamDTO 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 OpenTeamDTO extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*
* example:
* 销售部
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 30211
*/
@NameInMap("openId")
public String openId;
public static OpenTeamDTO build(java.util.Map map) throws Exception {
OpenTeamDTO self = new OpenTeamDTO();
return TeaModel.build(map, self);
}
public OpenTeamDTO setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public OpenTeamDTO setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public OpenTeamDTO setOpenId(String openId) {
this.openId = openId;
return this;
}
public String getOpenId() {
return this.openId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy