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 / NotificationTemplateChannelsWeb.php

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

21 lines 470 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 NotificationTemplateChannelsWeb implements \JsonSerializable {
6 public ?string $title = null;
7 public ?string $body = null;
8 public ?string $landing_url = null;
9 public ?string $image_url = null;
10
11 #[\ReturnTypeWillChange]
12 public function jsonSerialize(): array {
13 return [
14 'title' => $this->title,
15 'body' => $this->body,
16 'landing_url' => $this->landing_url,
17 'image_url' => $this->image_url,
18 ];
19 }
20 }
21