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 {
/**
* example:
* 2
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 30
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* This parameter is required.
*
* example:
* 1005
*/
@NameInMap("periodId")
public String periodId;
/**
* This parameter is required.
*
* example:
* 011539670175223
*/
@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;
}
}