1 | <?php |
||
20 | class SelectStaticElement implements SectionBlockElementInterface, ActionsBlockElementInterface, InputBlockElementInterface |
||
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 OptionObject */ |
||
31 | private $initialOption; |
||
32 | /** @var ConfirmationDialogObject */ |
||
33 | private $confirmDialog; |
||
34 | /** @var array|OptionObject[] */ |
||
35 | private $options; |
||
36 | |||
37 | public function __construct(string $placeholder, string $actionId, OptionObject $initialOption = null, ConfirmationDialogObject $confirmDialog = null, OptionObject ...$options) |
||
59 | } |
||
60 |