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

com.aliyun.dingtalkproject_1_0.models.UpdateOrganizationTaskContentRequest 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 UpdateOrganizationTaskContentRequest extends TeaModel {
    // 任务标题
    @NameInMap("content")
    public String content;

    // 是否禁止动态
    @NameInMap("disableActivity")
    public Boolean disableActivity;

    // 是否禁止通知
    @NameInMap("disableNotification")
    public Boolean disableNotification;

    public static UpdateOrganizationTaskContentRequest build(java.util.Map map) throws Exception {
        UpdateOrganizationTaskContentRequest self = new UpdateOrganizationTaskContentRequest();
        return TeaModel.build(map, self);
    }

    public UpdateOrganizationTaskContentRequest setContent(String content) {
        this.content = content;
        return this;
    }
    public String getContent() {
        return this.content;
    }

    public UpdateOrganizationTaskContentRequest setDisableActivity(Boolean disableActivity) {
        this.disableActivity = disableActivity;
        return this;
    }
    public Boolean getDisableActivity() {
        return this.disableActivity;
    }

    public UpdateOrganizationTaskContentRequest setDisableNotification(Boolean disableNotification) {
        this.disableNotification = disableNotification;
        return this;
    }
    public Boolean getDisableNotification() {
        return this.disableNotification;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy