dartId = $dartId; } /** * @return string */ public function getDartId() { return $this->dartId; } /** * Whether this operating system is for desktop. * * @param bool $desktop */ public function setDesktop($desktop) { $this->desktop = $desktop; } /** * @return bool */ public function getDesktop() { return $this->desktop; } /** * Identifies what kind of resource this is. Value: the fixed string * "dfareporting#operatingSystem". * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Whether this operating system is for mobile. * * @param bool $mobile */ public function setMobile($mobile) { $this->mobile = $mobile; } /** * @return bool */ public function getMobile() { return $this->mobile; } /** * Name of this operating system. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OperatingSystem::class, 'Google_Service_Dfareporting_OperatingSystem');