com.aliyun.dingtalkokr_1_0.models.OpenKeyResultDTO 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 OpenKeyResultDTO extends TeaModel {
@NameInMap("krId")
public String krId;
@NameInMap("progress")
public Long progress;
@NameInMap("status")
public Long status;
@NameInMap("title")
public String title;
@NameInMap("titleMentions")
public java.util.List titleMentions;
@NameInMap("type")
public Long type;
@NameInMap("weight")
public Double weight;
public static OpenKeyResultDTO build(java.util.Map map) throws Exception {
OpenKeyResultDTO self = new OpenKeyResultDTO();
return TeaModel.build(map, self);
}
public OpenKeyResultDTO setKrId(String krId) {
this.krId = krId;
return this;
}
public String getKrId() {
return this.krId;
}
public OpenKeyResultDTO setProgress(Long progress) {
this.progress = progress;
return this;
}
public Long getProgress() {
return this.progress;
}
public OpenKeyResultDTO setStatus(Long status) {
this.status = status;
return this;
}
public Long getStatus() {
return this.status;
}
public OpenKeyResultDTO setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public OpenKeyResultDTO setTitleMentions(java.util.List titleMentions) {
this.titleMentions = titleMentions;
return this;
}
public java.util.List getTitleMentions() {
return this.titleMentions;
}
public OpenKeyResultDTO setType(Long type) {
this.type = type;
return this;
}
public Long getType() {
return this.type;
}
public OpenKeyResultDTO setWeight(Double weight) {
this.weight = weight;
return this;
}
public Double getWeight() {
return this.weight;
}
}