12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace OSS\Model;
- class UploadInfo
- {
-
- public function __construct($key, $uploadId, $initiated)
- {
- $this->key = $key;
- $this->uploadId = $uploadId;
- $this->initiated = $initiated;
- }
-
- public function getKey()
- {
- return $this->key;
- }
-
- public function getUploadId()
- {
- return $this->uploadId;
- }
-
- public function getInitiated()
- {
- return $this->initiated;
- }
- private $key = "";
- private $uploadId = "";
- private $initiated = "";
- }
|