UNPKG

1.37 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 */
12/**
13 * Create audience for click-based retargeting
14 */
15export type CreateClickBasedAudienceGroupRequest = {
16 /**
17 * The audience\'s name. This is case-insensitive, meaning AUDIENCE and audience are considered identical. Max character limit: 120
18 *
19 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-click-audience-group">description Documentation</a>
20 */
21 description?: string;
22 /**
23 * The request ID of a broadcast or narrowcast message sent in the past 60 days. Each Messaging API request has a request ID.
24 *
25 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-click-audience-group">requestId Documentation</a>
26 */
27 requestId?: string;
28 /**
29 * The URL clicked by the user. If empty, users who clicked any URL in the message are added to the list of recipients. Max character limit: 2,000
30 *
31 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-click-audience-group">clickUrl Documentation</a>
32 */
33 clickUrl?: string;
34};