com.aliyun.dingtalkchengfeng_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.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;
}
}