UNPKG

984 BTypeScriptView Raw
1/**
2 * LIFF server API
3 * LIFF Server API.
4 *
5 * The version of the OpenAPI document: 1.0.0
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 { LiffBotPrompt } from "./liffBotPrompt.js";
13import { LiffFeatures } from "./liffFeatures.js";
14import { LiffScope } from "./liffScope.js";
15import { LiffView } from "./liffView.js";
16export type LiffApp = {
17 /**
18 * LIFF app ID
19 */
20 liffId?: string;
21 /**
22 */
23 view?: LiffView;
24 /**
25 * Name of the LIFF app
26 */
27 description?: string;
28 /**
29 */
30 features?: LiffFeatures;
31 /**
32 * How additional information in LIFF URLs is handled. concat is returned.
33 */
34 permanentLinkPattern?: string;
35 /**
36 */
37 scope?: Array<LiffScope>;
38 /**
39 */
40 botPrompt?: LiffBotPrompt;
41};
42export declare namespace LiffApp { }
43//# sourceMappingURL=liffApp.d.ts.map
\No newline at end of file