| 1 | <?php |
||
| 7 | class StartedButton implements ThreadSetting, \JsonSerializable |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $payload; |
||
| 13 | |||
| 14 | 5 | public function __construct($payload) |
|
| 18 | |||
| 19 | /** |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | 1 | public function getPayload() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @inheritdoc |
||
| 29 | */ |
||
| 30 | 2 | public function jsonSerialize() |
|
| 36 | } |
||
| 37 |