
com.aliyun.dingtalkchengfeng_1_0.models.OpenKeyResultDTO Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class OpenKeyResultDTO extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*
* example:
* 33
*/
@NameInMap("progress")
public Integer progress;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*
* example:
* 完成数据迁移
*/
@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;
public static OpenKeyResultDTO build(java.util.Map map) throws Exception {
OpenKeyResultDTO self = new OpenKeyResultDTO();
return TeaModel.build(map, self);
}
public OpenKeyResultDTO setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public OpenKeyResultDTO setProgress(Integer progress) {
this.progress = progress;
return this;
}
public Integer getProgress() {
return this.progress;
}
public OpenKeyResultDTO setStatus(Integer status) {
this.status = status;
return this;
}
public Integer 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(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy