![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkh3yun_1_0.models.QueryAppFunctionNodesResponseBody 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.dingtalkh3yun_1_0.models;
import com.aliyun.tea.*;
public class QueryAppFunctionNodesResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* success
*/
@NameInMap("code")
public String code;
@NameInMap("data")
public java.util.List data;
/**
* This parameter is required.
*
* example:
* OK
*/
@NameInMap("message")
public String message;
public static QueryAppFunctionNodesResponseBody build(java.util.Map map) throws Exception {
QueryAppFunctionNodesResponseBody self = new QueryAppFunctionNodesResponseBody();
return TeaModel.build(map, self);
}
public QueryAppFunctionNodesResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryAppFunctionNodesResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public QueryAppFunctionNodesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public static class QueryAppFunctionNodesResponseBodyData extends TeaModel {
/**
* example:
* D000001
*/
@NameInMap("appCode")
public String appCode;
/**
* example:
* 客户管理
*/
@NameInMap("displayName")
public String displayName;
/**
* example:
* false
*/
@NameInMap("isSystem")
public Boolean isSystem;
/**
* example:
* FormModule
*/
@NameInMap("nodeType")
public String nodeType;
/**
* example:
* AllVisible
*/
@NameInMap("nodeVisibleType")
public String nodeVisibleType;
/**
* example:
* 6b42e223-c849-4fe9-9916-52f52d1a41b5
*/
@NameInMap("parentCode")
public String parentCode;
/**
* example:
* 8d56c3b7-e996-4223-96a0-85ad16c11825
*/
@NameInMap("schemaCode")
public String schemaCode;
/**
* example:
* 1000000011
*/
@NameInMap("sortKey")
public Long sortKey;
/**
* example:
* Active
*/
@NameInMap("state")
public String state;
public static QueryAppFunctionNodesResponseBodyData build(java.util.Map map) throws Exception {
QueryAppFunctionNodesResponseBodyData self = new QueryAppFunctionNodesResponseBodyData();
return TeaModel.build(map, self);
}
public QueryAppFunctionNodesResponseBodyData setAppCode(String appCode) {
this.appCode = appCode;
return this;
}
public String getAppCode() {
return this.appCode;
}
public QueryAppFunctionNodesResponseBodyData setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public QueryAppFunctionNodesResponseBodyData setIsSystem(Boolean isSystem) {
this.isSystem = isSystem;
return this;
}
public Boolean getIsSystem() {
return this.isSystem;
}
public QueryAppFunctionNodesResponseBodyData setNodeType(String nodeType) {
this.nodeType = nodeType;
return this;
}
public String getNodeType() {
return this.nodeType;
}
public QueryAppFunctionNodesResponseBodyData setNodeVisibleType(String nodeVisibleType) {
this.nodeVisibleType = nodeVisibleType;
return this;
}
public String getNodeVisibleType() {
return this.nodeVisibleType;
}
public QueryAppFunctionNodesResponseBodyData setParentCode(String parentCode) {
this.parentCode = parentCode;
return this;
}
public String getParentCode() {
return this.parentCode;
}
public QueryAppFunctionNodesResponseBodyData setSchemaCode(String schemaCode) {
this.schemaCode = schemaCode;
return this;
}
public String getSchemaCode() {
return this.schemaCode;
}
public QueryAppFunctionNodesResponseBodyData setSortKey(Long sortKey) {
this.sortKey = sortKey;
return this;
}
public Long getSortKey() {
return this.sortKey;
}
public QueryAppFunctionNodesResponseBodyData setState(String state) {
this.state = state;
return this;
}
public String getState() {
return this.state;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy