
com.aliyun.dingtalkorg_culture_1_0.models.QueryOrgPointDetailsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkorg_culture_1_0.models;
import com.aliyun.tea.*;
public class QueryOrgPointDetailsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ORG_DEDUCTIONS
*/
@NameInMap("accountType")
public String accountType;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* This parameter is required.
*
* example:
* 042216842933
*/
@NameInMap("userId")
public String userId;
public static QueryOrgPointDetailsRequest build(java.util.Map map) throws Exception {
QueryOrgPointDetailsRequest self = new QueryOrgPointDetailsRequest();
return TeaModel.build(map, self);
}
public QueryOrgPointDetailsRequest setAccountType(String accountType) {
this.accountType = accountType;
return this;
}
public String getAccountType() {
return this.accountType;
}
public QueryOrgPointDetailsRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public QueryOrgPointDetailsRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryOrgPointDetailsRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy