com.aliyun.dingtalkchengfeng_1_0.models.GetAnalyzeDataRequest 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class GetAnalyzeDataRequest extends TeaModel {
@NameInMap("periodIds")
public java.util.List periodIds;
/**
* This parameter is required.
*
* example:
* 32222
*/
@NameInMap("deptId")
public String deptId;
public static GetAnalyzeDataRequest build(java.util.Map map) throws Exception {
GetAnalyzeDataRequest self = new GetAnalyzeDataRequest();
return TeaModel.build(map, self);
}
public GetAnalyzeDataRequest setPeriodIds(java.util.List periodIds) {
this.periodIds = periodIds;
return this;
}
public java.util.List getPeriodIds() {
return this.periodIds;
}
public GetAnalyzeDataRequest setDeptId(String deptId) {
this.deptId = deptId;
return this;
}
public String getDeptId() {
return this.deptId;
}
}