com.aliyun.dingtalkokr_1_0.models.GetUserOkrRequest 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 GetUserOkrRequest extends TeaModel {
// 页码,默认 为 1。
@NameInMap("pageNumber")
public Long pageNumber;
// 每页的个数,默认100。
@NameInMap("pageSize")
public Long pageSize;
// 周期 ID。
@NameInMap("periodId")
public String periodId;
// 当前用户的user ID。
@NameInMap("userId")
public String userId;
public static GetUserOkrRequest build(java.util.Map map) throws Exception {
GetUserOkrRequest self = new GetUserOkrRequest();
return TeaModel.build(map, self);
}
public GetUserOkrRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetUserOkrRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public GetUserOkrRequest setPeriodId(String periodId) {
this.periodId = periodId;
return this;
}
public String getPeriodId() {
return this.periodId;
}
public GetUserOkrRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}