| 12345678910111213141516171819 | 
							- <?php
 
- namespace OSS\Result;
 
- use OSS\Model\GetLiveChannelStatus;
 
- class GetLiveChannelStatusResult extends Result
 
- {
 
-     /**
 
-      * @return
 
-      */
 
-     protected function parseDataFromResponse()
 
-     {
 
-         $content = $this->rawResponse->body;
 
-         $channelList = new GetLiveChannelStatus();
 
-         $channelList->parseFromXml($content);
 
-         return $channelList;
 
-     }
 
- }
 
 
  |