com.aliyun.dingtalkedu_1_0.models.GetTaskStudentListRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class GetTaskStudentListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* staff234
*/
@NameInMap("operator")
public String operator;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 50
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* This parameter is required.
*
* example:
* 4240028
*/
@NameInMap("taskId")
public Long taskId;
public static GetTaskStudentListRequest build(java.util.Map map) throws Exception {
GetTaskStudentListRequest self = new GetTaskStudentListRequest();
return TeaModel.build(map, self);
}
public GetTaskStudentListRequest setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
public GetTaskStudentListRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetTaskStudentListRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public GetTaskStudentListRequest setTaskId(Long taskId) {
this.taskId = taskId;
return this;
}
public Long getTaskId() {
return this.taskId;
}
}