com.aliyun.dingtalkokr_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.dingtalkokr_1_0.models;
import com.aliyun.tea.*;
public class OpenUserDTO extends TeaModel {
/**
* example:
* 0342464558835299
*/
@NameInMap("dingUserId")
public String dingUserId;
/**
* example:
* 小明
*/
@NameInMap("name")
public String name;
/**
* example:
* 64cd2e9bb80efb17244c650d
*/
@NameInMap("userUid")
public String userUid;
/**
* example:
* 2639402752-1812711657
*/
@NameInMap("workNo")
public String workNo;
public static OpenUserDTO build(java.util.Map map) throws Exception {
OpenUserDTO self = new OpenUserDTO();
return TeaModel.build(map, self);
}
public OpenUserDTO setDingUserId(String dingUserId) {
this.dingUserId = dingUserId;
return this;
}
public String getDingUserId() {
return this.dingUserId;
}
public OpenUserDTO setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public OpenUserDTO setUserUid(String userUid) {
this.userUid = userUid;
return this;
}
public String getUserUid() {
return this.userUid;
}
public OpenUserDTO setWorkNo(String workNo) {
this.workNo = workNo;
return this;
}
public String getWorkNo() {
return this.workNo;
}
}