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