# pushly/2.2.0/src/php/Models/NotificationTemplate.php

Pushly, version 2.2.0. 17 lines.

- Page: https://pluginprobe.com/plugins/pushly/2.2.0/code/src/php/Models/NotificationTemplate.php
- Raw: https://pluginprobe.com/plugins/pushly/2.2.0/raw/src/php/Models/NotificationTemplate.php
- Modified: 2026-04-16T21:15:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/pushly/2.2.0/code/src/php/Models/NotificationTemplate.php#L10-L20`.

```php
<?php

namespace Pushly\Models;

class NotificationTemplate implements \JsonSerializable {
	public ?NotificationTemplateChannels $channels = null;
	public array $keywords = [];

	#[\ReturnTypeWillChange]
	public function jsonSerialize(): array {
		return [
			'channels' => $this->channels,
			'keywords' => $this->keywords,
		];
	}
}

```
