com.aliyun.dingtalkchengfeng_1_0.models.OpenProgressDTO 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 OpenProgressDTO extends TeaModel {
/**
* This parameter is required.
*
* example:
* 48383883
*/
@NameInMap("created")
public Long created;
/**
* This parameter is required.
*/
@NameInMap("creator")
public OpenUserDTO creator;
/**
* This parameter is required.
*
* example:
* 我的目标
*/
@NameInMap("htmlContent")
public String htmlContent;
/**
* This parameter is required.
*
* example:
* 11
*/
@NameInMap("id")
public String id;
/**
* This parameter is required.
*/
@NameInMap("modifier")
public OpenUserDTO modifier;
/**
* This parameter is required.
*
* example:
* 48383883
*/
@NameInMap("updated")
public Long updated;
public static OpenProgressDTO build(java.util.Map map) throws Exception {
OpenProgressDTO self = new OpenProgressDTO();
return TeaModel.build(map, self);
}
public OpenProgressDTO setCreated(Long created) {
this.created = created;
return this;
}
public Long getCreated() {
return this.created;
}
public OpenProgressDTO setCreator(OpenUserDTO creator) {
this.creator = creator;
return this;
}
public OpenUserDTO getCreator() {
return this.creator;
}
public OpenProgressDTO setHtmlContent(String htmlContent) {
this.htmlContent = htmlContent;
return this;
}
public String getHtmlContent() {
return this.htmlContent;
}
public OpenProgressDTO setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public OpenProgressDTO setModifier(OpenUserDTO modifier) {
this.modifier = modifier;
return this;
}
public OpenUserDTO getModifier() {
return this.modifier;
}
public OpenProgressDTO setUpdated(Long updated) {
this.updated = updated;
return this;
}
public Long getUpdated() {
return this.updated;
}
}