UNPKG

1.18 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 { Audience } from "./audience";
13/**
14 * Add user IDs or Identifiers for Advertisers (IFAs) to an audience for uploading user IDs (by JSON)
15 */
16export type AddAudienceToAudienceGroupRequest = {
17 /**
18 * The audience ID.
19 *
20 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group">audienceGroupId Documentation</a>
21 */
22 audienceGroupId?: number;
23 /**
24 * The audience\'s name.
25 *
26 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group">uploadDescription Documentation</a>
27 */
28 uploadDescription?: string;
29 /**
30 * An array of up to 10,000 user IDs or IFAs.
31 *
32 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group">audiences Documentation</a>
33 */
34 audiences?: Array<Audience>;
35};