1 | <?php |
||
20 | class SelectExternalElement 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 int */ |
||
31 | private $minQueryLength; |
||
32 | /** @var OptionObject */ |
||
33 | private $initialOption; |
||
34 | /** @var ConfirmationDialogObject */ |
||
35 | private $confirmDialog; |
||
36 | |||
37 | public function __construct(string $placeholder, string $actionId, int $minQueryLength, OptionObject $initialOption = null, ConfirmationDialogObject $confirmDialog = null) |
||
56 | } |
||
57 |