/**
 * 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 { AudienceGroupType } from "./audienceGroupType.js";

/**
 * Create audience for impression-based retargeting
 * @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group">https://developers.line.biz/en/reference/messaging-api/#create-imp-audience-group</a>
 */
export type CreateImpBasedAudienceGroupResponse = {
  /**
   * The audience ID.
   */
  audienceGroupId?: number;
  type?: AudienceGroupType;
  /**
   * The audience's name.
   */
  description?: string;
  /**
   * When the audience was created (in UNIX time).
   */
  created?: number;
  /**
   * The request ID that was specified when the audience was created.
   */
  requestId?: string;
};

export namespace CreateImpBasedAudienceGroupResponse {}
