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

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

The 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 OpenKeyResultDTO extends TeaModel {
    /**
     * example:
     * 

65222713d0e8b868f9f9ae51

*/ @NameInMap("krId") public String krId; /** * example: *

80

*/ @NameInMap("progress") public Long progress; /** * example: *

1

*/ @NameInMap("status") public Long status; /** * example: *

这是一个KR

*/ @NameInMap("title") public String title; @NameInMap("titleMentions") public java.util.List titleMentions; /** * example: *

1

*/ @NameInMap("type") public Long type; /** * example: *

10.00

*/ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy