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
						
					
					
						
							891 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							55 lines
						
					
					
						
							891 B
						
					
					
				| <?php | |
| 
 | |
| namespace OSS\Model; | |
| 
 | |
| /** | |
|  * Class UploadInfo | |
|  * | |
|  * The return value of ListMultipartUpload | |
|  * | |
|  * @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 = ""; | |
| } |