bucket = $bucket; $this->key = $key; $this->uploadId = $uploadId; $this->nextPartNumberMarker = $nextPartNumberMarker; $this->maxParts = $maxParts; $this->isTruncated = $isTruncated; $this->listPart = $listPart; } /** * @return string */ public function getBucket() { return $this->bucket; } /** * @return string */ public function getKey() { return $this->key; } /** * @return string */ public function getUploadId() { return $this->uploadId; } /** * @return int */ public function getNextPartNumberMarker() { return $this->nextPartNumberMarker; } /** * @return int */ public function getMaxParts() { return $this->maxParts; } /** * @return string */ public function getIsTruncated() { return $this->isTruncated; } /** * @return array */ public function getListPart() { return $this->listPart; } private $bucket = ""; private $key = ""; private $uploadId = ""; private $nextPartNumberMarker = 0; private $maxParts = 0; private $isTruncated = ""; private $listPart = array(); }