downloadId = $downloadId; } /** * @return string */ public function getDownloadId() { return $this->downloadId; } /** * Name of the module which recovery apk belongs to. * * @param string $moduleName */ public function setModuleName($moduleName) { $this->moduleName = $moduleName; } /** * @return string */ public function getModuleName() { return $this->moduleName; } /** * ID of the recovery action. * * @param string $recoveryId */ public function setRecoveryId($recoveryId) { $this->recoveryId = $recoveryId; } /** * @return string */ public function getRecoveryId() { return $this->recoveryId; } /** * The status of the recovery action corresponding to the recovery apk. * * Accepted values: RECOVERY_STATUS_UNSPECIFIED, RECOVERY_STATUS_ACTIVE, * RECOVERY_STATUS_CANCELED, RECOVERY_STATUS_DRAFT, * RECOVERY_STATUS_GENERATION_IN_PROGRESS, RECOVERY_STATUS_GENERATION_FAILED * * @param self::RECOVERY_STATUS_* $recoveryStatus */ public function setRecoveryStatus($recoveryStatus) { $this->recoveryStatus = $recoveryStatus; } /** * @return self::RECOVERY_STATUS_* */ public function getRecoveryStatus() { return $this->recoveryStatus; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GeneratedRecoveryApk::class, 'Google_Service_AndroidPublisher_GeneratedRecoveryApk');