All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkproject_1_0.models.UpdateOrganizationTaskContentResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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