UNPKG

1.54 kBTypeScriptView Raw
1/**
2 * LINE Messaging API
3 * This document describes LINE Messaging API.
4 *
5 * The version of the OpenAPI document: 0.0.1
6 *
7 *
8 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9 * https://openapi-generator.tech
10 * Do not edit the class manually.
11 */
12/**
13 * basic information about the bot.
14 */
15export type ModuleBot = {
16 /**
17 * Bot\'s user ID
18 *
19 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">userId Documentation</a>
20 */
21 userId: string;
22 /**
23 * Bot\'s basic ID
24 *
25 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">basicId Documentation</a>
26 */
27 basicId: string;
28 /**
29 * Bot\'s premium ID. Not included in the response if the premium ID isn\'t set.
30 *
31 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">premiumId Documentation</a>
32 */
33 premiumId?: string;
34 /**
35 * Bot\'s display name
36 *
37 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">displayName Documentation</a>
38 */
39 displayName: string;
40 /**
41 * Profile image URL. Image URL starting with `https://`. Not included in the response if the bot doesn\'t have a profile image.
42 *
43 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">pictureUrl Documentation</a>
44 */
45 pictureUrl?: string;
46};