UNPKG

1.62 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 */
12import { AudienceGroupType } from "./audienceGroupType";
13/**
14 * Create audience for impression-based retargeting
15 */
16export type CreateImpBasedAudienceGroupResponse = {
17 /**
18 * The audience ID.
19 *
20 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group">audienceGroupId Documentation</a>
21 */
22 audienceGroupId?: number;
23 /**
24 *
25 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group">type Documentation</a>
26 */
27 type?: AudienceGroupType;
28 /**
29 * The audience\'s name.
30 *
31 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group">description Documentation</a>
32 */
33 description?: string;
34 /**
35 * When the audience was created (in UNIX time).
36 *
37 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group">created Documentation</a>
38 */
39 created?: number;
40 /**
41 * The request ID that was specified when the audience was created.
42 *
43 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group">requestId Documentation</a>
44 */
45 requestId?: string;
46};
47export declare namespace CreateImpBasedAudienceGroupResponse { }