com.aliyun.dingtalkchengfeng_1_0.models.GetUserRequest 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 GetUserRequest extends TeaModel {
/**
* example:
* 3adeaddeddddd
*/
@NameInMap("okrUserId")
public String okrUserId;
/**
* example:
* 0344333
*/
@NameInMap("userId")
public String userId;
public static GetUserRequest build(java.util.Map map) throws Exception {
GetUserRequest self = new GetUserRequest();
return TeaModel.build(map, self);
}
public GetUserRequest setOkrUserId(String okrUserId) {
this.okrUserId = okrUserId;
return this;
}
public String getOkrUserId() {
return this.okrUserId;
}
public GetUserRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}