| 1 |
<?php |
| 2 |
|
| 3 |
namespace Pushly\Models; |
| 4 |
|
| 5 |
class NotificationTemplate implements \JsonSerializable { |
| 6 |
public ?NotificationTemplateChannels $channels = null; |
| 7 |
public array $keywords = []; |
| 8 |
|
| 9 |
#[\ReturnTypeWillChange] |
| 10 |
public function jsonSerialize(): array { |
| 11 |
return [ |
| 12 |
'channels' => $this->channels, |
| 13 |
'keywords' => $this->keywords, |
| 14 |
]; |
| 15 |
} |
| 16 |
} |
| 17 |
|