Files
Background-panel/addons/alioss/library/OSS/Result/PutLiveChannelResult.php
yyh931018@qq.com d1f6cbd57e update
2022-09-08 17:11:02 +08:00

17 lines
321 B
PHP

<?php
namespace OSS\Result;
use OSS\Model\LiveChannelInfo;
class PutLiveChannelResult extends Result
{
protected function parseDataFromResponse()
{
$content = $this->rawResponse->body;
$channel = new LiveChannelInfo();
$channel->parseFromXml($content);
return $channel;
}
}