xxx
![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkagoal_1_0.models.OpenAgoalLatestProgressDTO 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.dingtalkagoal_1_0.models;
import com.aliyun.tea.*;
public class OpenAgoalLatestProgressDTO extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1716952481672
*/
@NameInMap("created")
public Long created;
/**
* This parameter is required.
*/
@NameInMap("creator")
public OpenAgoalUserDTO creator;
/**
* This parameter is required.
*
* example:
*
*/
@NameInMap("htmldescription")
public String htmldescription;
/**
* This parameter is required.
*
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("progressId")
public String progressId;
public static OpenAgoalLatestProgressDTO build(java.util.Map map) throws Exception {
OpenAgoalLatestProgressDTO self = new OpenAgoalLatestProgressDTO();
return TeaModel.build(map, self);
}
public OpenAgoalLatestProgressDTO setCreated(Long created) {
this.created = created;
return this;
}
public Long getCreated() {
return this.created;
}
public OpenAgoalLatestProgressDTO setCreator(OpenAgoalUserDTO creator) {
this.creator = creator;
return this;
}
public OpenAgoalUserDTO getCreator() {
return this.creator;
}
public OpenAgoalLatestProgressDTO setHtmldescription(String htmldescription) {
this.htmldescription = htmldescription;
return this;
}
public String getHtmldescription() {
return this.htmldescription;
}
public OpenAgoalLatestProgressDTO setProgressId(String progressId) {
this.progressId = progressId;
return this;
}
public String getProgressId() {
return this.progressId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy