bundleId = $bundleId; } /** * @return string */ public function getBundleId() { return $this->bundleId; } /** * The source file * * @param FileReference $content */ public function setContent(FileReference $content) { $this->content = $content; } /** * @return FileReference */ public function getContent() { return $this->content; } /** * Location of the file on the device, inside the app's sandboxed filesystem * * @param string $devicePath */ public function setDevicePath($devicePath) { $this->devicePath = $devicePath; } /** * @return string */ public function getDevicePath() { return $this->devicePath; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IosDeviceFile::class, 'Google_Service_Testing_IosDeviceFile');