You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.1 KiB
107 lines
2.1 KiB
<?php
|
|
|
|
namespace OSS\Model;
|
|
|
|
/**
|
|
* Class LiveChannelListInfo
|
|
*
|
|
* ListBucketLiveChannels接口返回数据
|
|
*
|
|
* @package OSS\Model
|
|
* @link http://help.aliyun.com/document_detail/oss/api-reference/bucket/GetBucket.html
|
|
*/
|
|
class LiveChannelListInfo implements XmlConfig
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBucketName()
|
|
{
|
|
return $this->bucket;
|
|
}
|
|
|
|
public function setBucketName($name)
|
|
{
|
|
$this->bucket = $name;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getPrefix()
|
|
{
|
|
return $this->prefix;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getMarker()
|
|
{
|
|
return $this->marker;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getMaxKeys()
|
|
{
|
|
return $this->maxKeys;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getIsTruncated()
|
|
{
|
|
return $this->isTruncated;
|
|
}
|
|
|
|
/**
|
|
* @return LiveChannelInfo[]
|
|
*/
|
|
public function getChannelList()
|
|
{
|
|
return $this->channelList;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getNextMarker()
|
|
{
|
|
return $this->nextMarker;
|
|
}
|
|
|
|
public function parseFromXml($strXml)
|
|
{
|
|
$xml = simplexml_load_string($strXml);
|
|
|
|
$this->prefix = strval($xml->Prefix);
|
|
$this->marker = strval($xml->Marker);
|
|
$this->maxKeys = intval($xml->MaxKeys);
|
|
$this->isTruncated = (strval($xml->IsTruncated) == 'true');
|
|
$this->nextMarker = strval($xml->NextMarker);
|
|
|
|
if (isset($xml->LiveChannel)) {
|
|
foreach ($xml->LiveChannel as $chan) {
|
|
$channel = new LiveChannelInfo();
|
|
$channel->parseFromXmlNode($chan);
|
|
$this->channelList[] = $channel;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function serializeToXml()
|
|
{
|
|
throw new OssException("Not implemented.");
|
|
}
|
|
|
|
private $bucket = '';
|
|
private $prefix = '';
|
|
private $marker = '';
|
|
private $nextMarker = '';
|
|
private $maxKeys = 100;
|
|
private $isTruncated = 'false';
|
|
private $channelList = array();
|
|
}
|
|
|