| 1 | <?php |
||
| 13 | class InlineKeyboardMarkup extends BaseType |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | static protected $requiredParams = ['inline_keyboard']; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | * |
||
| 25 | * @var array |
||
| 26 | */ |
||
| 27 | static protected $map = [ |
||
| 28 | 'inline_keyboard' => true, |
||
| 29 | ]; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var array |
||
| 33 | */ |
||
| 34 | protected $inlineKeyboard; |
||
| 35 | |||
| 36 | public function __construct($inlineKeyboard) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param array $inlineKeyboard |
||
| 43 | */ |
||
| 44 | public function setInlineKeyboard($inlineKeyboard) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return array |
||
| 51 | */ |
||
| 52 | public function getInlineKeyboard() |
||
| 56 | } |
||
| 57 |