UNPKG

1.04 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 { AudienceGroup } from "./audienceGroup";
13import { AudienceGroupJob } from "./audienceGroupJob";
14/**
15 * Get audience data
16 */
17export type GetAudienceDataResponse = {
18 /**
19 *
20 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-audience-group">audienceGroup Documentation</a>
21 */
22 audienceGroup?: AudienceGroup;
23 /**
24 * An array of jobs. This array is used to keep track of each attempt to add new user IDs or IFAs to an audience for uploading user IDs. Empty array is returned for any other type of audience. Max: 50
25 *
26 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-audience-group">jobs Documentation</a>
27 */
28 jobs?: Array<AudienceGroupJob>;
29};