| 1 | <?php |
||
| 20 | class OverflowMenuElement implements SectionBlockElementInterface, ActionsBlockElementInterface |
||
| 21 | { |
||
| 22 | use MessageJsonSerializeTrait; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | private $type; |
||
| 26 | /** @var PlainTextElement */ |
||
| 27 | private $placeholder; |
||
| 28 | /** @var string */ |
||
| 29 | private $actionId; |
||
| 30 | /** @var ConfirmationDialogObject */ |
||
| 31 | private $confirmDialog; |
||
| 32 | /** @var array|OptionObject[] */ |
||
| 33 | private $options; |
||
| 34 | |||
| 35 | public function __construct(string $placeholder, string $actionId, ConfirmationDialogObject $confirmDialog = null, OptionObject ...$options) |
||
| 53 | } |
||
| 54 |