com.aliyun.dingtalkdatacenter_1_0.models.QueryGeneralDataServiceRequest 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 QueryGeneralDataServiceRequest extends TeaModel {
/**
* example:
* 123
*/
@NameInMap("deptId")
public String deptId;
/**
* This parameter is required.
*
* example:
* 20220803
*/
@NameInMap("endDate")
public String endDate;
/**
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
@NameInMap("returnTotal")
public Boolean returnTotal;
/**
* This parameter is required.
*
* example:
* API-7fa754fd-f53e-46ee-9b77-898aa6eb590c
*/
@NameInMap("serviceId")
public String serviceId;
/**
* This parameter is required.
*
* example:
* 20220801
*/
@NameInMap("startDate")
public String startDate;
/**
* This parameter is required.
*
* example:
* 0234412313
*/
@NameInMap("userId")
public String userId;
public static QueryGeneralDataServiceRequest build(java.util.Map map) throws Exception {
QueryGeneralDataServiceRequest self = new QueryGeneralDataServiceRequest();
return TeaModel.build(map, self);
}
public QueryGeneralDataServiceRequest setDeptId(String deptId) {
this.deptId = deptId;
return this;
}
public String getDeptId() {
return this.deptId;
}
public QueryGeneralDataServiceRequest setEndDate(String endDate) {
this.endDate = endDate;
return this;
}
public String getEndDate() {
return this.endDate;
}
public QueryGeneralDataServiceRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public QueryGeneralDataServiceRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryGeneralDataServiceRequest setReturnTotal(Boolean returnTotal) {
this.returnTotal = returnTotal;
return this;
}
public Boolean getReturnTotal() {
return this.returnTotal;
}
public QueryGeneralDataServiceRequest setServiceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
public String getServiceId() {
return this.serviceId;
}
public QueryGeneralDataServiceRequest setStartDate(String startDate) {
this.startDate = startDate;
return this;
}
public String getStartDate() {
return this.startDate;
}
public QueryGeneralDataServiceRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}