crxVersion = $crxVersion; } /** * @return string */ public function getCrxVersion() { return $this->crxVersion; } /** * Output only. The ID of the item the package was uploaded to. * * @param string $itemId */ public function setItemId($itemId) { $this->itemId = $itemId; } /** * @return string */ public function getItemId() { return $this->itemId; } /** * The name of the item the package was uploaded to. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The state of the upload. If `upload_state` is * `UPLOAD_IN_PROGRESS`, you can poll for updates using the fetchStatus * method. * * Accepted values: UPLOAD_STATE_UNSPECIFIED, SUCCEEDED, IN_PROGRESS, FAILED, * NOT_FOUND * * @param self::UPLOAD_STATE_* $uploadState */ public function setUploadState($uploadState) { $this->uploadState = $uploadState; } /** * @return self::UPLOAD_STATE_* */ public function getUploadState() { return $this->uploadState; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UploadItemPackageResponse::class, 'Google_Service_Chromewebstore_UploadItemPackageResponse');