PluginProbe
Pushly / 2.2.0
Pushly v2.2.0
2.4.0 2.3.0 trunk 1.0 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 2.0.0 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1
pushly / src / php / Models / NotificationAudience.php

NotificationAudience.php in Pushly 2.2.0, at src/php/Models/NotificationAudience.php

18 lines 388 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Pushly\Models;
4
5 class NotificationAudience implements \JsonSerializable {
6 public ?bool $all_subscribers = null;
7 public ?array $segment_ids = null;
8
9 #[\ReturnTypeWillChange]
10 public function jsonSerialize(): array {
11 if ( $this->all_subscribers ) {
12 return [ 'all_subscribers' => $this->all_subscribers ];
13 }
14
15 return [ 'segment_ids' => $this->segment_ids ];
16 }
17 }
18