![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkchengfeng_1_0.models.OpenUserDTO 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 OpenUserDTO 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:
* 015310183065939140
*/
@NameInMap("userId")
public String userId;
public static OpenUserDTO build(java.util.Map map) throws Exception {
OpenUserDTO self = new OpenUserDTO();
return TeaModel.build(map, self);
}
public OpenUserDTO setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public OpenUserDTO setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public OpenUserDTO setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy