![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.UpdateOrganizationTaskContentResponseBody 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.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class UpdateOrganizationTaskContentResponseBody extends TeaModel {
@NameInMap("result")
public UpdateOrganizationTaskContentResponseBodyResult result;
public static UpdateOrganizationTaskContentResponseBody build(java.util.Map map) throws Exception {
UpdateOrganizationTaskContentResponseBody self = new UpdateOrganizationTaskContentResponseBody();
return TeaModel.build(map, self);
}
public UpdateOrganizationTaskContentResponseBody setResult(UpdateOrganizationTaskContentResponseBodyResult result) {
this.result = result;
return this;
}
public UpdateOrganizationTaskContentResponseBodyResult getResult() {
return this.result;
}
public static class UpdateOrganizationTaskContentResponseBodyResult extends TeaModel {
/**
* example:
* 后天交周报
*/
@NameInMap("content")
public String content;
/**
* example:
* 2022-06-08T07:32:48.958Z
*/
@NameInMap("updated")
public String updated;
public static UpdateOrganizationTaskContentResponseBodyResult build(java.util.Map map) throws Exception {
UpdateOrganizationTaskContentResponseBodyResult self = new UpdateOrganizationTaskContentResponseBodyResult();
return TeaModel.build(map, self);
}
public UpdateOrganizationTaskContentResponseBodyResult setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public UpdateOrganizationTaskContentResponseBodyResult setUpdated(String updated) {
this.updated = updated;
return this;
}
public String getUpdated() {
return this.updated;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy