com.aliyun.dingtalkdingmi_1_0.models.GetOfficialAccountRobotInfoResponseBody 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 GetOfficialAccountRobotInfoResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("appId")
public Long appId;
/**
* 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:
* xxxx
*/
@NameInMap("icon")
public String icon;
/**
* This parameter is required.
*
* example:
* 小蜜机器人
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* xxxx
*/
@NameInMap("previewMediaUrl")
public String previewMediaUrl;
public static GetOfficialAccountRobotInfoResponseBody build(java.util.Map map) throws Exception {
GetOfficialAccountRobotInfoResponseBody self = new GetOfficialAccountRobotInfoResponseBody();
return TeaModel.build(map, self);
}
public GetOfficialAccountRobotInfoResponseBody setAppId(Long appId) {
this.appId = appId;
return this;
}
public Long getAppId() {
return this.appId;
}
public GetOfficialAccountRobotInfoResponseBody setBrief(String brief) {
this.brief = brief;
return this;
}
public String getBrief() {
return this.brief;
}
public GetOfficialAccountRobotInfoResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetOfficialAccountRobotInfoResponseBody setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public GetOfficialAccountRobotInfoResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetOfficialAccountRobotInfoResponseBody setPreviewMediaUrl(String previewMediaUrl) {
this.previewMediaUrl = previewMediaUrl;
return this;
}
public String getPreviewMediaUrl() {
return this.previewMediaUrl;
}
}