![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdingmi_1_0.models.UpdateOfficialAccountRobotInfoRequest 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.dingtalkdingmi_1_0.models;
import com.aliyun.tea.*;
public class UpdateOfficialAccountRobotInfoRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* xxxx
*/
@NameInMap("avatar")
public String avatar;
/**
* This parameter is required.
*
* example:
* 小蜜客服机器人
*/
@NameInMap("brief")
public String brief;
/**
* This parameter is required.
*
* example:
* 小蜜客服机器人是7*24小时智能问答机器人
*/
@NameInMap("description")
public String description;
/**
* This parameter is required.
*
* example:
* 小蜜机器人
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* xxxx
*/
@NameInMap("previewMediaUrl")
public String previewMediaUrl;
/**
* This parameter is required.
*
* example:
* 机器人类型参数,服务窗机器人:1,客户群内机器人:2
*/
@NameInMap("type")
public String type;
public static UpdateOfficialAccountRobotInfoRequest build(java.util.Map map) throws Exception {
UpdateOfficialAccountRobotInfoRequest self = new UpdateOfficialAccountRobotInfoRequest();
return TeaModel.build(map, self);
}
public UpdateOfficialAccountRobotInfoRequest setAvatar(String avatar) {
this.avatar = avatar;
return this;
}
public String getAvatar() {
return this.avatar;
}
public UpdateOfficialAccountRobotInfoRequest setBrief(String brief) {
this.brief = brief;
return this;
}
public String getBrief() {
return this.brief;
}
public UpdateOfficialAccountRobotInfoRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public UpdateOfficialAccountRobotInfoRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateOfficialAccountRobotInfoRequest setPreviewMediaUrl(String previewMediaUrl) {
this.previewMediaUrl = previewMediaUrl;
return this;
}
public String getPreviewMediaUrl() {
return this.previewMediaUrl;
}
public UpdateOfficialAccountRobotInfoRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy