UNPKG

1.86 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 { AudienceGroupCreateRoute } from "./audienceGroupCreateRoute";
13import { AudienceGroupFailedType } from "./audienceGroupFailedType";
14import { AudienceGroupPermission } from "./audienceGroupPermission";
15import { AudienceGroupStatus } from "./audienceGroupStatus";
16import { AudienceGroupType } from "./audienceGroupType";
17/**
18 * Audience group
19 */
20export type AudienceGroup = {
21 /**
22 * The audience ID.
23 */
24 audienceGroupId?: number;
25 /**
26 */
27 type?: AudienceGroupType;
28 /**
29 * The audience\'s name.
30 */
31 description?: string;
32 /**
33 */
34 status?: AudienceGroupStatus;
35 /**
36 */
37 failedType?: AudienceGroupFailedType | null;
38 /**
39 * The number of users included in the audience.
40 */
41 audienceCount?: number;
42 /**
43 * When the audience was created (in UNIX time).
44 */
45 created?: number;
46 /**
47 * The request ID that was specified when the audience was created. This is only included when `audienceGroup.type` is CLICK or IMP.
48 */
49 requestId?: string;
50 /**
51 * The URL that was specified when the audience was created. This is only included when `audienceGroup.type` is CLICK and link URL is specified.
52 */
53 clickUrl?: string;
54 /**
55 * The value indicating the type of account to be sent, as specified when creating the audience for uploading user IDs.
56 */
57 isIfaAudience?: boolean;
58 /**
59 */
60 permission?: AudienceGroupPermission;
61 /**
62 */
63 createRoute?: AudienceGroupCreateRoute;
64};
65export declare namespace AudienceGroup { }