![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdatacenter_1_0.models.GetAdministrativeLicensingRequest 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.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetAdministrativeLicensingRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* This parameter is required.
*/
@NameInMap("searchKey")
public String searchKey;
public static GetAdministrativeLicensingRequest build(java.util.Map map) throws Exception {
GetAdministrativeLicensingRequest self = new GetAdministrativeLicensingRequest();
return TeaModel.build(map, self);
}
public GetAdministrativeLicensingRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetAdministrativeLicensingRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetAdministrativeLicensingRequest setSearchKey(String searchKey) {
this.searchKey = searchKey;
return this;
}
public String getSearchKey() {
return this.searchKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy