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.30
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 {
        // 任务标题
        @NameInMap("content")
        public String content;

        // 更新时间
        @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 - 2024 Weber Informatics LLC | Privacy Policy