UNPKG

1.01 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 */
12import { ModuleBot } from "./moduleBot";
13/**
14 * List of bots to which the module is attached
15 */
16export type GetModulesResponse = {
17 /**
18 * Array of Bot list Item objects representing basic information about the bot.
19 *
20 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">bots Documentation</a>
21 */
22 bots: Array<ModuleBot>;
23 /**
24 * Continuation token. Used to get the next array of basic bot information. This property is only returned if there are more unreturned results.
25 *
26 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api">next Documentation</a>
27 */
28 next?: string;
29};