| Total Complexity | 2 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class SentWebAppMessage extends BaseType implements TypeInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * {@inheritdoc} |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected static $requiredParams = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | * |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected static $map = [ |
||
| 23 | 'inline_message_id' => true, |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Optional. Identifier of the sent inline message. Available only if there is an inline keyboard attached to the message. |
||
| 28 | * |
||
| 29 | * @var string|null |
||
| 30 | */ |
||
| 31 | protected $inlineMessageId; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string|null |
||
| 35 | */ |
||
| 36 | public function getInlineMessageId() |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param string|null $inlineMessageId |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function setInlineMessageId($inlineMessageId) |
||
| 50 |