Files
yusheng-php/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/PutLiveChannelResult.php

17 lines
321 B
PHP
Raw Normal View History

2025-10-20 10:02:41 +08:00
<?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;
}
}