1 | <?php |
||
28 | class Message extends Response implements MessageInterface |
||
29 | { |
||
30 | /** |
||
31 | * @var string Indicates the type of this message. |
||
32 | */ |
||
33 | private $type; |
||
34 | |||
35 | public function getType() |
||
39 | |||
40 | /** |
||
41 | * @param string $response The raw json response message data from ARI |
||
42 | */ |
||
43 | public function __construct($response) |
||
49 | } |
||
50 |