/** * 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"; /** * Create audience for impression-based retargeting */ export type CreateImpBasedAudienceGroupResponse = { /** * The audience ID. * * @see audienceGroupId Documentation */ audienceGroupId?: number; /** * * @see type Documentation */ type?: AudienceGroupType; /** * The audience\'s name. * * @see description Documentation */ description?: string; /** * When the audience was created (in UNIX time). * * @see created Documentation */ created?: number; /** * The request ID that was specified when the audience was created. * * @see requestId Documentation */ requestId?: string; }; export declare namespace CreateImpBasedAudienceGroupResponse { }