com.aliyun.dingtalkreport_1_0.models.UserMapValue 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.dingtalkreport_1_0.models;
import com.aliyun.tea.*;
public class UserMapValue extends TeaModel {
@NameInMap("userId")
public String userId;
@NameInMap("name")
public String name;
@NameInMap("deptId")
public String deptId;
public static UserMapValue build(java.util.Map map) throws Exception {
UserMapValue self = new UserMapValue();
return TeaModel.build(map, self);
}
public UserMapValue setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public UserMapValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UserMapValue setDeptId(String deptId) {
this.deptId = deptId;
return this;
}
public String getDeptId() {
return this.deptId;
}
}