| <?phpnamespace OSS\Result;use OSS\Model\LiveChannelListInfo;class ListLiveChannelResult extends Result{    protected function parseDataFromResponse()    {        $content = $this->rawResponse->body;        $channelList = new LiveChannelListInfo();        $channelList->parseFromXml($content);        return $channelList;    }}
 |