UNPKG

824 BTypeScriptView Raw
1/**
2 * Webhook Type Definition
3 * Webhook event definition of the LINE Messaging 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 ImageSet = {
13 /**
14 * Image set ID. Only included when multiple images are sent simultaneously.
15 */
16 id: string;
17 /**
18 * An index starting from 1, indicating the image number in a set of images sent simultaneously. Only included when multiple images are sent simultaneously. However, it won\'t be included if the sender is using LINE 11.15 or earlier for Android.
19 */
20 index?: number;
21 /**
22 * The total number of images sent simultaneously.
23 */
24 total?: number;
25};