![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.CreateOrganizationTaskRequest 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 CreateOrganizationTaskRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 明天12点前完成周报撰写
*/
@NameInMap("content")
public String content;
/**
* example:
* 2021-08-13T07:36:50.318Z
*/
@NameInMap("createTime")
public String createTime;
/**
* example:
* false
*
* if can be null:
* true
*/
@NameInMap("disableActivity")
public Boolean disableActivity;
/**
* example:
* false
*
* if can be null:
* true
*/
@NameInMap("disableNotification")
public Boolean disableNotification;
/**
* example:
* 2021-08-13T07:36:50.318Z
*/
@NameInMap("dueDate")
public String dueDate;
/**
* example:
* 173xxxx
*/
@NameInMap("executorId")
public String executorId;
@NameInMap("involveMembers")
public java.util.List involveMembers;
/**
* example:
* 我是一条任务备注
*/
@NameInMap("note")
public String note;
/**
* This parameter is required.
*
* example:
* -10
*/
@NameInMap("priority")
public Integer priority;
/**
* This parameter is required.
*
* example:
* members
*/
@NameInMap("visible")
public String visible;
public static CreateOrganizationTaskRequest build(java.util.Map map) throws Exception {
CreateOrganizationTaskRequest self = new CreateOrganizationTaskRequest();
return TeaModel.build(map, self);
}
public CreateOrganizationTaskRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public CreateOrganizationTaskRequest setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public CreateOrganizationTaskRequest setDisableActivity(Boolean disableActivity) {
this.disableActivity = disableActivity;
return this;
}
public Boolean getDisableActivity() {
return this.disableActivity;
}
public CreateOrganizationTaskRequest setDisableNotification(Boolean disableNotification) {
this.disableNotification = disableNotification;
return this;
}
public Boolean getDisableNotification() {
return this.disableNotification;
}
public CreateOrganizationTaskRequest setDueDate(String dueDate) {
this.dueDate = dueDate;
return this;
}
public String getDueDate() {
return this.dueDate;
}
public CreateOrganizationTaskRequest setExecutorId(String executorId) {
this.executorId = executorId;
return this;
}
public String getExecutorId() {
return this.executorId;
}
public CreateOrganizationTaskRequest setInvolveMembers(java.util.List involveMembers) {
this.involveMembers = involveMembers;
return this;
}
public java.util.List getInvolveMembers() {
return this.involveMembers;
}
public CreateOrganizationTaskRequest setNote(String note) {
this.note = note;
return this;
}
public String getNote() {
return this.note;
}
public CreateOrganizationTaskRequest setPriority(Integer priority) {
this.priority = priority;
return this;
}
public Integer getPriority() {
return this.priority;
}
public CreateOrganizationTaskRequest setVisible(String visible) {
this.visible = visible;
return this;
}
public String getVisible() {
return this.visible;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy