Commit 1d31be8
Add forbidPartialDelivery option to the Narrowcast Limit Object (#873)
line/line-openapi#114
## Add forbidPartialDelivery option to the Narrowcast Limit Object
We add a new `forbidPartialDelivery` option to the Narrowcast Limit
Object.
When set to true, this option prevents messages from being delivered to
only a subset of the target audience.
If partial delivery occurs, the narrowcast request will succeed but fail
asynchronously.
You can verify whether the message delivery was canceled by checking the
narrowcast message progress.
This property can only be set to true when upToRemainingQuota is also
true.
For more details, see the
https://developers.line.biz/en/news/2025/10/21/narrowcast-message-update/.
### Example:
```json
{
"max": 100,
"upToRemainingQuota": true,
"forbidPartialDelivery": true
}
```
Co-authored-by: github-actions <[email protected]>1 parent fbf5f1b commit 1d31be8
File tree
3 files changed
+6
-4
lines changed- linebot/v3/messaging/models
3 files changed
+6
-4
lines changedSubmodule line-openapi updated 1 file
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| 31 | + | |
31 | 32 | | |
32 | | - | |
| 33 | + | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
| |||
68 | 69 | | |
69 | 70 | | |
70 | 71 | | |
71 | | - | |
| 72 | + | |
| 73 | + | |
72 | 74 | | |
73 | 75 | | |
74 | 76 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
0 commit comments