deliveryType = $deliveryType; } /** * @return string */ public function getDeliveryType() { return $this->deliveryType; } /** * @param string[] */ public function setDependencies($dependencies) { $this->dependencies = $dependencies; } /** * @return string[] */ public function getDependencies() { return $this->dependencies; } /** * @param string */ public function setModuleType($moduleType) { $this->moduleType = $moduleType; } /** * @return string */ public function getModuleType() { return $this->moduleType; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param ModuleTargeting */ public function setTargeting(ModuleTargeting $targeting) { $this->targeting = $targeting; } /** * @return ModuleTargeting */ public function getTargeting() { return $this->targeting; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ModuleMetadata::class, 'Google_Service_AndroidPublisher_ModuleMetadata');