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

com.aliyun.dingtalkdingmi_1_0.models.GetOfficialAccountRobotInfoResponseBody 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy