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

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

There is a newer version: 2.1.50
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 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy