All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkrobot_1_0.models.QueryRobotPluginResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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: *

https://www.dingtalk.com

*/ @NameInMap("mobileUrl") public String mobileUrl; /** * example: *

快捷入口名称

*/ @NameInMap("name") public String name; /** * example: *

https://www.dingtalk.com

*/ @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy