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

com.aliyun.dingtalkrobot_1_0.models.UpdateInstalledRobotRequest 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 UpdateInstalledRobotRequest extends TeaModel {
    /**
     * example:
     * 

钉钉的助手机器人

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

钉钉的助手机器人的详细描述

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

@IAfnkdsanfnkljn

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

钉钉助手

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

This parameter is required.

* * example: *

dingXXXXXXXXXX

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

This parameter is required.

* * example: *

1

*/ @NameInMap("updateType") public Integer updateType; public static UpdateInstalledRobotRequest build(java.util.Map map) throws Exception { UpdateInstalledRobotRequest self = new UpdateInstalledRobotRequest(); return TeaModel.build(map, self); } public UpdateInstalledRobotRequest setBrief(String brief) { this.brief = brief; return this; } public String getBrief() { return this.brief; } public UpdateInstalledRobotRequest setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public UpdateInstalledRobotRequest setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public UpdateInstalledRobotRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public UpdateInstalledRobotRequest setRobotCode(String robotCode) { this.robotCode = robotCode; return this; } public String getRobotCode() { return this.robotCode; } public UpdateInstalledRobotRequest setUpdateType(Integer updateType) { this.updateType = updateType; return this; } public Integer getUpdateType() { return this.updateType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy