Ai_GirlFriend/xunifriend_RaeeC/addons/alioss/library/OSS/Result/GetLiveChannelStatusResult.php
2026-01-31 19:15:41 +08:00

20 lines
380 B
PHP

<?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;
}
}