1 | <?php |
||
6 | class CustomButton extends \PleskX\Api\Struct |
||
7 | { |
||
8 | /** @var string */ |
||
9 | public $id; |
||
10 | |||
11 | /** @var int */ |
||
12 | public $sortKey; |
||
13 | |||
14 | /** @var bool */ |
||
15 | public $public; |
||
16 | |||
17 | /** @var bool */ |
||
18 | public $internal; |
||
19 | |||
20 | /** @var bool */ |
||
21 | public $noFrame; |
||
22 | |||
23 | /** @var string */ |
||
24 | public $place; |
||
25 | |||
26 | /** @var string */ |
||
27 | public $url; |
||
28 | |||
29 | /** @var string */ |
||
30 | public $text; |
||
31 | |||
32 | public function __construct($apiResponse) |
||
45 | } |
||
46 |