com.aliyun.dingtalkagoal_1_0.models.OpenAgoalKeyResultDTO 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.dingtalkagoal_1_0.models;
import com.aliyun.tea.*;
public class OpenAgoalKeyResultDTO extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("keyActions")
public java.util.List keyActions;
/**
* This parameter is required.
*
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("keyResultId")
public String keyResultId;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("progress")
public Integer progress;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*
* example:
* 测试KR
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*/
@NameInMap("titleMentions")
public java.util.List titleMentions;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("type")
public Integer type;
/**
* This parameter is required.
*
* example:
* 30
*/
@NameInMap("weight")
public Double weight;
public static OpenAgoalKeyResultDTO build(java.util.Map map) throws Exception {
OpenAgoalKeyResultDTO self = new OpenAgoalKeyResultDTO();
return TeaModel.build(map, self);
}
public OpenAgoalKeyResultDTO setKeyActions(java.util.List keyActions) {
this.keyActions = keyActions;
return this;
}
public java.util.List getKeyActions() {
return this.keyActions;
}
public OpenAgoalKeyResultDTO setKeyResultId(String keyResultId) {
this.keyResultId = keyResultId;
return this;
}
public String getKeyResultId() {
return this.keyResultId;
}
public OpenAgoalKeyResultDTO setProgress(Integer progress) {
this.progress = progress;
return this;
}
public Integer getProgress() {
return this.progress;
}
public OpenAgoalKeyResultDTO setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public OpenAgoalKeyResultDTO setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public OpenAgoalKeyResultDTO setTitleMentions(java.util.List titleMentions) {
this.titleMentions = titleMentions;
return this;
}
public java.util.List getTitleMentions() {
return this.titleMentions;
}
public OpenAgoalKeyResultDTO setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
public OpenAgoalKeyResultDTO setWeight(Double weight) {
this.weight = weight;
return this;
}
public Double getWeight() {
return this.weight;
}
}