com.aliyun.dingtalkh3yun_1_0.models.QueryAppFunctionNodesRequest 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 QueryAppFunctionNodesRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* D000001
*/
@NameInMap("appCode")
public String appCode;
public static QueryAppFunctionNodesRequest build(java.util.Map map) throws Exception {
QueryAppFunctionNodesRequest self = new QueryAppFunctionNodesRequest();
return TeaModel.build(map, self);
}
public QueryAppFunctionNodesRequest setAppCode(String appCode) {
this.appCode = appCode;
return this;
}
public String getAppCode() {
return this.appCode;
}
}