UNPKG

1.19 kBTypeScriptView Raw
1/**
2 * Mission Stickers API
3 * This document describes LINE Mission Stickers 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 * Send mission stickers (v3)
14 */
15export type MissionStickerRequest = {
16 /**
17 * Destination user ID
18 *
19 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#send-mission-stickers-v3">to Documentation</a>
20 */
21 to: string;
22 /**
23 * Package ID for a set of stickers
24 *
25 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#send-mission-stickers-v3">productId Documentation</a>
26 */
27 productId: string;
28 /**
29 * `STICKER`
30 *
31 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#send-mission-stickers-v3">productType Documentation</a>
32 */
33 productType: string;
34 /**
35 * `false`
36 *
37 * @see <a href="https://developers.line.biz/en/reference/partner-docs/#send-mission-stickers-v3">sendPresentMessage Documentation</a>
38 */
39 sendPresentMessage: boolean;
40};