| 1 | <?php |
||
| 14 | class PopularChannelsRequest extends AbstractMessage |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $_instanceName; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var int |
||
| 24 | */ |
||
| 25 | private $_limit; |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * PopularChannelsRequest constructor. |
||
| 30 | * |
||
| 31 | * @param string $parameters |
||
| 32 | * |
||
| 33 | * @throws MalformedRequestException |
||
| 34 | */ |
||
| 35 | public function __construct($parameters) |
||
| 48 | |||
| 49 | |||
| 50 | /** |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function getInstanceName() |
||
| 57 | |||
| 58 | |||
| 59 | /** |
||
| 60 | * @return int |
||
| 61 | */ |
||
| 62 | public function getLimit() |
||
| 66 | |||
| 67 | } |
||
| 68 |