All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.CollegeListUncheckedStudentRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CollegeListUncheckedStudentRequest extends TeaModel {
    /**
     * example:
     * 

1111111

*/ @NameInMap("deptId") public Long deptId; /** *

This parameter is required.

* * example: *

1

*/ @NameInMap("pageNumber") public Long pageNumber; /** *

This parameter is required.

* * example: *

100

*/ @NameInMap("pageSize") public Long pageSize; public static CollegeListUncheckedStudentRequest build(java.util.Map map) throws Exception { CollegeListUncheckedStudentRequest self = new CollegeListUncheckedStudentRequest(); return TeaModel.build(map, self); } public CollegeListUncheckedStudentRequest setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public CollegeListUncheckedStudentRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public CollegeListUncheckedStudentRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy