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.
55 lines
896 B
55 lines
896 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace OSS\Model;
|
||
|
|
||
|
/**
|
||
|
* Class UploadInfo
|
||
|
*
|
||
|
* ListMultipartUpload接口得到的UploadInfo
|
||
|
*
|
||
|
* @package OSS\Model
|
||
|
*/
|
||
|
class UploadInfo
|
||
|
{
|
||
|
/**
|
||
|
* UploadInfo constructor.
|
||
|
*
|
||
|
* @param string $key
|
||
|
* @param string $uploadId
|
||
|
* @param string $initiated
|
||
|
*/
|
||
|
public function __construct($key, $uploadId, $initiated)
|
||
|
{
|
||
|
$this->key = $key;
|
||
|
$this->uploadId = $uploadId;
|
||
|
$this->initiated = $initiated;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getKey()
|
||
|
{
|
||
|
return $this->key;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getUploadId()
|
||
|
{
|
||
|
return $this->uploadId;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getInitiated()
|
||
|
{
|
||
|
return $this->initiated;
|
||
|
}
|
||
|
|
||
|
private $key = "";
|
||
|
private $uploadId = "";
|
||
|
private $initiated = "";
|
||
|
}
|