![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.UpdateTaskTaskflowstatusRequest 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 UpdateTaskTaskflowstatusRequest extends TeaModel {
/**
* example:
* 60a2187eb72xxxxxxx
*/
@NameInMap("taskflowStatusId")
public String taskflowStatusId;
/**
* example:
* 说明。
*/
@NameInMap("taskflowStatusUpdateNote")
public String taskflowStatusUpdateNote;
public static UpdateTaskTaskflowstatusRequest build(java.util.Map map) throws Exception {
UpdateTaskTaskflowstatusRequest self = new UpdateTaskTaskflowstatusRequest();
return TeaModel.build(map, self);
}
public UpdateTaskTaskflowstatusRequest setTaskflowStatusId(String taskflowStatusId) {
this.taskflowStatusId = taskflowStatusId;
return this;
}
public String getTaskflowStatusId() {
return this.taskflowStatusId;
}
public UpdateTaskTaskflowstatusRequest setTaskflowStatusUpdateNote(String taskflowStatusUpdateNote) {
this.taskflowStatusUpdateNote = taskflowStatusUpdateNote;
return this;
}
public String getTaskflowStatusUpdateNote() {
return this.taskflowStatusUpdateNote;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy