![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.SearchTaskFlowResponseBody 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 SearchTaskFlowResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static SearchTaskFlowResponseBody build(java.util.Map map) throws Exception {
SearchTaskFlowResponseBody self = new SearchTaskFlowResponseBody();
return TeaModel.build(map, self);
}
public SearchTaskFlowResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class SearchTaskFlowResponseBodyResult extends TeaModel {
/**
* example:
* 62c25e3b376ecxxxxxxx
*/
@NameInMap("boundToObjectId")
public String boundToObjectId;
/**
* example:
* project
*/
@NameInMap("boundToObjectType")
public String boundToObjectType;
/**
* example:
* 2022-07-04T03:29:34.770Z
*/
@NameInMap("created")
public String created;
/**
* example:
* 07151530111xxxxx
*/
@NameInMap("creatorId")
public String creatorId;
/**
* example:
* false
*/
@NameInMap("isDeleted")
public Boolean isDeleted;
/**
* example:
* 工作流1
*/
@NameInMap("name")
public String name;
/**
* example:
* 60a2187eb72xxxxxxx
*/
@NameInMap("taskflowId")
public String taskflowId;
/**
* example:
* 2022-07-04T03:29:34.770Z
*/
@NameInMap("updated")
public String updated;
public static SearchTaskFlowResponseBodyResult build(java.util.Map map) throws Exception {
SearchTaskFlowResponseBodyResult self = new SearchTaskFlowResponseBodyResult();
return TeaModel.build(map, self);
}
public SearchTaskFlowResponseBodyResult setBoundToObjectId(String boundToObjectId) {
this.boundToObjectId = boundToObjectId;
return this;
}
public String getBoundToObjectId() {
return this.boundToObjectId;
}
public SearchTaskFlowResponseBodyResult setBoundToObjectType(String boundToObjectType) {
this.boundToObjectType = boundToObjectType;
return this;
}
public String getBoundToObjectType() {
return this.boundToObjectType;
}
public SearchTaskFlowResponseBodyResult setCreated(String created) {
this.created = created;
return this;
}
public String getCreated() {
return this.created;
}
public SearchTaskFlowResponseBodyResult setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public SearchTaskFlowResponseBodyResult setIsDeleted(Boolean isDeleted) {
this.isDeleted = isDeleted;
return this;
}
public Boolean getIsDeleted() {
return this.isDeleted;
}
public SearchTaskFlowResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public SearchTaskFlowResponseBodyResult setTaskflowId(String taskflowId) {
this.taskflowId = taskflowId;
return this;
}
public String getTaskflowId() {
return this.taskflowId;
}
public SearchTaskFlowResponseBodyResult setUpdated(String updated) {
this.updated = updated;
return this;
}
public String getUpdated() {
return this.updated;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy