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

com.aliyun.dingtalkrobot_1_0.models.SetRobotPluginRequest 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 SetRobotPluginRequest extends TeaModel {
    @NameInMap("pluginInfoList")
    public java.util.List pluginInfoList;

    /**
     * example:
     * 

dingncjdnfpkN7dsh

*/ @NameInMap("robotCode") public String robotCode; public static SetRobotPluginRequest build(java.util.Map map) throws Exception { SetRobotPluginRequest self = new SetRobotPluginRequest(); return TeaModel.build(map, self); } public SetRobotPluginRequest setPluginInfoList(java.util.List pluginInfoList) { this.pluginInfoList = pluginInfoList; return this; } public java.util.List getPluginInfoList() { return this.pluginInfoList; } public SetRobotPluginRequest setRobotCode(String robotCode) { this.robotCode = robotCode; return this; } public String getRobotCode() { return this.robotCode; } public static class SetRobotPluginRequestPluginInfoList extends TeaModel { /** *

This parameter is required.

* * example: *

@lALPDtXaDkO3j7hgYA

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

https://www.dingtalk.com

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

This parameter is required.

* * example: *

快捷入口名字

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

https://www.dingtalk.com

*/ @NameInMap("pcUrl") public String pcUrl; public static SetRobotPluginRequestPluginInfoList build(java.util.Map map) throws Exception { SetRobotPluginRequestPluginInfoList self = new SetRobotPluginRequestPluginInfoList(); return TeaModel.build(map, self); } public SetRobotPluginRequestPluginInfoList setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public SetRobotPluginRequestPluginInfoList setMobileUrl(String mobileUrl) { this.mobileUrl = mobileUrl; return this; } public String getMobileUrl() { return this.mobileUrl; } public SetRobotPluginRequestPluginInfoList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SetRobotPluginRequestPluginInfoList setPcUrl(String pcUrl) { this.pcUrl = pcUrl; return this; } public String getPcUrl() { return this.pcUrl; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy