Skip to content

Commit 5dd66bb

Browse files
github-actions[bot]github-actions
andauthored
Add new AudienceGroupType POP_AD_IMP to Audience Group API (#1706)
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 98630e6 commit 5dd66bb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

clients/line-bot-manage-audience-client/src/main/java/com/linecorp/bot/audience/model/AudienceGroupType.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ public enum AudienceGroupType {
6464
@JsonProperty("RICHMENU_CLICK")
6565
RICHMENU_CLICK,
6666

67+
@JsonProperty("POP_AD_IMP")
68+
POP_AD_IMP,
69+
6770
@JsonEnumDefaultValue
6871
UNDEFINED;
6972

@@ -82,6 +85,7 @@ public String toValue() {
8285
case IMAGE_CLICK -> "IMAGE_CLICK";
8386
case RICHMENU_IMP -> "RICHMENU_IMP";
8487
case RICHMENU_CLICK -> "RICHMENU_CLICK";
88+
case POP_AD_IMP -> "POP_AD_IMP";
8589

8690
default -> "UNDEFINED";
8791
};

line-openapi

0 commit comments

Comments
 (0)