123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace OSS\Model;
- /**
- * Bucket信息,ListBuckets接口返回数据
- *
- * Class BucketInfo
- * @package OSS\Model
- */
- class BucketInfo
- {
- /**
- * BucketInfo constructor.
- *
- * @param string $location
- * @param string $name
- * @param string $createDate
- */
- public function __construct($location, $name, $createDate)
- {
- $this->location = $location;
- $this->name = $name;
- $this->createDate = $createDate;
- }
- /**
- * 得到bucket所在的region
- *
- * @return string
- */
- public function getLocation()
- {
- return $this->location;
- }
- /**
- * 得到bucket的名称
- *
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * 得到bucket的创建时间
- *
- * @return string
- */
- public function getCreateDate()
- {
- return $this->createDate;
- }
- /**
- * bucket所在的region
- *
- * @var string
- */
- private $location;
- /**
- * bucket的名称
- *
- * @var string
- */
- private $name;
- /**
- * bucket的创建事件
- *
- * @var string
- */
- private $createDate;
- }
|