com.aliyun.dingtalkokr_1_0.models.BatchQueryObjectiveRequest 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.dingtalkokr_1_0.models;
import com.aliyun.tea.*;
public class BatchQueryObjectiveRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("objectiveIds")
public java.util.List objectiveIds;
/**
* This parameter is required.
*
* example:
* 10056
*/
@NameInMap("periodId")
public String periodId;
/**
* example:
* false
*/
@NameInMap("withAlign")
public Boolean withAlign;
/**
* example:
* false
*/
@NameInMap("withKr")
public Boolean withKr;
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("withProgress")
public Boolean withProgress;
/**
* This parameter is required.
*
* example:
* 0115396701752283
*/
@NameInMap("userId")
public String userId;
public static BatchQueryObjectiveRequest build(java.util.Map map) throws Exception {
BatchQueryObjectiveRequest self = new BatchQueryObjectiveRequest();
return TeaModel.build(map, self);
}
public BatchQueryObjectiveRequest setObjectiveIds(java.util.List objectiveIds) {
this.objectiveIds = objectiveIds;
return this;
}
public java.util.List getObjectiveIds() {
return this.objectiveIds;
}
public BatchQueryObjectiveRequest setPeriodId(String periodId) {
this.periodId = periodId;
return this;
}
public String getPeriodId() {
return this.periodId;
}
public BatchQueryObjectiveRequest setWithAlign(Boolean withAlign) {
this.withAlign = withAlign;
return this;
}
public Boolean getWithAlign() {
return this.withAlign;
}
public BatchQueryObjectiveRequest setWithKr(Boolean withKr) {
this.withKr = withKr;
return this;
}
public Boolean getWithKr() {
return this.withKr;
}
public BatchQueryObjectiveRequest setWithProgress(Boolean withProgress) {
this.withProgress = withProgress;
return this;
}
public Boolean getWithProgress() {
return this.withProgress;
}
public BatchQueryObjectiveRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}