/**
 * LINE Messaging API
 * This document describes LINE Messaging API.
 *
 * The version of the OpenAPI document: 0.0.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

import { Audience } from "./audience.js";

/**
 * Add user IDs or Identifiers for Advertisers (IFAs) to an audience for uploading user IDs (by JSON)
 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group">https://developers.line.biz/en/reference/messaging-api/#update-upload-audience-group</a>
 */
export type AddAudienceToAudienceGroupRequest = {
  /**
   * The audience ID.
   */
  audienceGroupId?: number;
  /**
   * The audience's name.
   */
  uploadDescription?: string;
  /**
   * An array of up to 10,000 user IDs or IFAs.
   * @maxItems 10000
   */
  audiences?: Array<Audience>;
};
