Skip to content

Commit 56d832b

Browse files
github-actions[bot]github-actions
andauthored
Add new AudienceGroupType POP_AD_IMP to Audience Group API (#731)
line/line-openapi#113 # Add `POP_AD_IMP` to **AudienceGroupType** Enum We have supported for the new audience‑group type **`POP_AD_IMP`** (POP ad impression audience) to the OpenAPI schema. ## Changes Made * **Updated `AudienceGroupType` enumeration** * **New value**: `POP_AD_IMP` * **Description**: Audience groups generated from impressions of *LINE Beacon Network* (POP) ads. * **Region**: **Taiwan‑only** at launch ## Purpose This update enables correct identification and handling of audience groups built from POP ad impressions, a feature that will be released for the Taiwan market. ## Documents and Reference - [Managing Audience](https://developers.line.biz/en/reference/messaging-api/#manage-audience-group) For more information, please refer to the links provided above. --------- Co-authored-by: github-actions <[email protected]>
1 parent 22c92cc commit 56d832b

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed

docs/classes/LINE-Clients-ManageAudience-Model-AudienceGroupType.html

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,13 @@ <h3 id="toc">
249249
<span>
250250
&nbsp;= &#039;IMP&#039; </span>
251251
</dt>
252+
<dd></dd>
253+
254+
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
255+
<a href="classes/LINE-Clients-ManageAudience-Model-AudienceGroupType.html#constant_POP_AD_IMP">POP_AD_IMP</a>
256+
<span>
257+
&nbsp;= &#039;POP_AD_IMP&#039; </span>
258+
</dt>
252259
<dd></dd>
253260

254261
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
@@ -483,6 +490,35 @@ <h4 class="phpdocumentor-element__name" id="constant_IMP">
483490

484491

485492

493+
</article>
494+
<article class="phpdocumentor-element -constant -public ">
495+
<h4 class="phpdocumentor-element__name" id="constant_POP_AD_IMP">
496+
POP_AD_IMP
497+
<a href="classes/LINE-Clients-ManageAudience-Model-AudienceGroupType.html#constant_POP_AD_IMP" class="headerlink"><i class="fas fa-link"></i></a>
498+
</h4>
499+
500+
<aside class="phpdocumentor-element-found-in">
501+
<abbr class="phpdocumentor-element-found-in__file" title="src/clients/manage-audience/lib/Model/AudienceGroupType.php"><a href="files/src-clients-manage-audience-lib-model-audiencegrouptype.html"><abbr title="src/clients/manage-audience/lib/Model/AudienceGroupType.php">AudienceGroupType.php</abbr></a></abbr>
502+
:
503+
<span class="phpdocumentor-element-found-in__line">85</span>
504+
505+
</aside>
506+
507+
508+
<code class="phpdocumentor-signature phpdocumentor-code ">
509+
<span class="phpdocumentor-signature__visibility">public</span>
510+
<span class="phpdocumentor-signature__type">mixed</span>
511+
<span class="phpdocumentor-signature__name">POP_AD_IMP</span>
512+
= <span class="phpdocumentor-signature__default-value">&#039;POP_AD_IMP&#039;</span>
513+
</code>
514+
515+
516+
<section class="phpdocumentor-description"></section>
517+
518+
<section class="phpdocumentor-description"></section>
519+
520+
521+
486522
</article>
487523
<article class="phpdocumentor-element -constant -public ">
488524
<h4 class="phpdocumentor-element__name" id="constant_RESERVATION">
@@ -680,7 +716,7 @@ <h4 class="phpdocumentor-element__name" id="method_getAllowableEnumValues">
680716
<aside class="phpdocumentor-element-found-in">
681717
<abbr class="phpdocumentor-element-found-in__file" title="src/clients/manage-audience/lib/Model/AudienceGroupType.php"><a href="files/src-clients-manage-audience-lib-model-audiencegrouptype.html"><abbr title="src/clients/manage-audience/lib/Model/AudienceGroupType.php">AudienceGroupType.php</abbr></a></abbr>
682718
:
683-
<span class="phpdocumentor-element-found-in__line">89</span>
719+
<span class="phpdocumentor-element-found-in__line">91</span>
684720

685721
</aside>
686722

docs/js/searchIndex.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9800,6 +9800,11 @@ Search.appendIndex(
98009800
"name": "RICHMENU_CLICK",
98019801
"summary": "",
98029802
"url": "classes/LINE-Clients-ManageAudience-Model-AudienceGroupType.html#constant_RICHMENU_CLICK"
9803+
}, {
9804+
"fqsen": "\\LINE\\Clients\\ManageAudience\\Model\\AudienceGroupType\u003A\u003APOP_AD_IMP",
9805+
"name": "POP_AD_IMP",
9806+
"summary": "",
9807+
"url": "classes/LINE-Clients-ManageAudience-Model-AudienceGroupType.html#constant_POP_AD_IMP"
98039808
}, {
98049809
"fqsen": "\\LINE\\Clients\\ManageAudience\\Model\\CreateAudienceGroupRequest",
98059810
"name": "CreateAudienceGroupRequest",

line-openapi

src/clients/manage-audience/lib/Model/AudienceGroupType.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ class AudienceGroupType
8282

8383
public const RICHMENU_CLICK = 'RICHMENU_CLICK';
8484

85+
public const POP_AD_IMP = 'POP_AD_IMP';
86+
8587
/**
8688
* Gets allowable values of the enum
8789
* @return string[]
@@ -100,7 +102,8 @@ public static function getAllowableEnumValues()
100102
self::WEBTRAFFIC,
101103
self::IMAGE_CLICK,
102104
self::RICHMENU_IMP,
103-
self::RICHMENU_CLICK
105+
self::RICHMENU_CLICK,
106+
self::POP_AD_IMP
104107
];
105108
}
106109
}

0 commit comments

Comments
 (0)