admin/app/common/services/aliyunoss/OSS/Result/GetLiveChannelStatusResult.php

20 lines
440 B
PHP

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