@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
32 lines • 1.24 kB
TypeScript
/**
* 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.
*/
/**
* Create audience for click-based retargeting
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#create-click-audience-group">https://developers.line.biz/en/reference/messaging-api/#create-click-audience-group</a>
*/
export type CreateClickBasedAudienceGroupRequest = {
/**
* The audience's name. This is case-insensitive, meaning AUDIENCE and audience are considered identical. Max character limit: 120
* @maxLength 120
*/
description?: string;
/**
* The request ID of a broadcast or narrowcast message sent in the past 60 days. Each Messaging API request has a request ID.
*/
requestId?: string;
/**
* The URL clicked by the user. If empty, users who clicked any URL in the message are added to the list of recipients. Max character limit: 2,000
* @maxLength 2000
*/
clickUrl?: string;
};
//# sourceMappingURL=createClickBasedAudienceGroupRequest.d.ts.map