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.30
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 {
    // 机器人id
    @NameInMap("appId")
    public Long appId;

    // 机器人简介
    @NameInMap("brief")
    public String brief;

    // 机器人描述
    @NameInMap("description")
    public String description;

    // 机器人icon
    @NameInMap("icon")
    public String icon;

    // 机器人名称
    @NameInMap("name")
    public String name;

    // 机器人预览图
    @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