UNPKG

1.32 kBTypeScriptView 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 */
12export type LiffView = {
13 /**
14 * Size of the LIFF app view. Specify one of these values: - compact - tall - full
15 *
16 * @see <a href="https://developers.line.biz/en/reference/liff-server/#add-liff-app">type Documentation</a>
17 */
18 type: LiffView.TypeEnum;
19 /**
20 * Endpoint URL. This is the URL of the web app that implements the LIFF app (e.g. https://example.com). Used when the LIFF app is launched using the LIFF URL. The URL scheme must be https. URL fragments (#URL-fragment) can\'t be specified.
21 *
22 * @see <a href="https://developers.line.biz/en/reference/liff-server/#add-liff-app">url Documentation</a>
23 */
24 url: string;
25 /**
26 * `true` to use the LIFF app in modular mode. When in modular mode, the action button in the header is not displayed.
27 *
28 * @see <a href="https://developers.line.biz/en/reference/liff-server/#add-liff-app">moduleMode Documentation</a>
29 */
30 moduleMode?: boolean;
31};
32export declare namespace LiffView {
33 type TypeEnum = "compact" | "tall" | "full";
34}