All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkokr_1_0.models.BatchQueryObjectiveRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // 需要查看的 Objective ID。
    @NameInMap("objectiveIds")
    public java.util.List objectiveIds;

    // 周期 ID。
    @NameInMap("periodId")
    public String periodId;

    // 是否返回关联信息。
    @NameInMap("withAlign")
    public Boolean withAlign;

    // 是否返回 KR 信息。
    @NameInMap("withKr")
    public Boolean withKr;

    // 是否返回进度信息
    @NameInMap("withProgress")
    public Boolean withProgress;

    // 当前用户的 staff ID。
    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy