/**
 * LINE Messaging API
 * This document describes LINE Messaging API.
 *
 * The version of the OpenAPI document: 0.0.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * basic information about the bot.
 */
export type ModuleBot = {
    /**
     * Bot\'s user ID
     *
     * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">userId Documentation</a>
     */
    userId: string;
    /**
     * Bot\'s basic ID
     *
     * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">basicId Documentation</a>
     */
    basicId: string;
    /**
     * Bot\'s premium ID. Not included in the response if the premium ID isn\'t set.
     *
     * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">premiumId Documentation</a>
     */
    premiumId?: string;
    /**
     * Bot\'s display name
     *
     * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">displayName Documentation</a>
     */
    displayName: string;
    /**
     * Profile image URL. Image URL starting with `https://`. Not included in the response if the bot doesn\'t have a profile image.
     *
     * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">pictureUrl Documentation</a>
     */
    pictureUrl?: string;
};
//# sourceMappingURL=moduleBot.d.ts.map