![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkattendance_1_0.models.GetAdjustmentsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class GetAdjustmentsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
public static GetAdjustmentsRequest build(java.util.Map map) throws Exception {
GetAdjustmentsRequest self = new GetAdjustmentsRequest();
return TeaModel.build(map, self);
}
public GetAdjustmentsRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetAdjustmentsRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy