# pushly/2.4.0/src/php/Models/NotificationTemplateChannelsWeb.php

Pushly, version 2.4.0. 21 lines.

- Page: https://pluginprobe.com/plugins/pushly/2.4.0/code/src/php/Models/NotificationTemplateChannelsWeb.php
- Raw: https://pluginprobe.com/plugins/pushly/2.4.0/raw/src/php/Models/NotificationTemplateChannelsWeb.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.4.0/code/src/php/Models/NotificationTemplateChannelsWeb.php#L10-L20`.

```php
<?php

namespace Pushly\Models;

class NotificationTemplateChannelsWeb implements \JsonSerializable {
	public ?string $title = null;
	public ?string $body = null;
	public ?string $landing_url = null;
	public ?string $image_url = null;

	#[\ReturnTypeWillChange]
	public function jsonSerialize(): array {
		return [
			'title'       => $this->title,
			'body'        => $this->body,
			'landing_url' => $this->landing_url,
			'image_url'   => $this->image_url,
		];
	}
}

```
