com.aliyun.dingtalkrobot_1_0.models.QueryRobotPluginResponseBody 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class QueryRobotPluginResponseBody extends TeaModel {
@NameInMap("pluginInfoList")
public java.util.List pluginInfoList;
public static QueryRobotPluginResponseBody build(java.util.Map map) throws Exception {
QueryRobotPluginResponseBody self = new QueryRobotPluginResponseBody();
return TeaModel.build(map, self);
}
public QueryRobotPluginResponseBody setPluginInfoList(java.util.List pluginInfoList) {
this.pluginInfoList = pluginInfoList;
return this;
}
public java.util.List getPluginInfoList() {
return this.pluginInfoList;
}
public static class QueryRobotPluginResponseBodyPluginInfoList extends TeaModel {
/**
* example:
* @lALPDtXaDkO3j7hgYA
*/
@NameInMap("icon")
public String icon;
/**
* example:
*
*/
@NameInMap("mobileUrl")
public String mobileUrl;
/**
* example:
* 快捷入口名称
*/
@NameInMap("name")
public String name;
/**
* example:
*
*/
@NameInMap("pcUrl")
public String pcUrl;
public static QueryRobotPluginResponseBodyPluginInfoList build(java.util.Map map) throws Exception {
QueryRobotPluginResponseBodyPluginInfoList self = new QueryRobotPluginResponseBodyPluginInfoList();
return TeaModel.build(map, self);
}
public QueryRobotPluginResponseBodyPluginInfoList setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public QueryRobotPluginResponseBodyPluginInfoList setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public QueryRobotPluginResponseBodyPluginInfoList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryRobotPluginResponseBodyPluginInfoList setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
}
}