appId = $appId; } /** * @return string */ public function getAppId() { return $this->appId; } /** * Output only. The app name. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Output only. The app platform. * * Accepted values: PLATFORM_UNSPECIFIED, IOS, ANDROID * * @param self::PLATFORM_* $platform */ public function setPlatform($platform) { $this->platform = $platform; } /** * @return self::PLATFORM_* */ public function getPlatform() { return $this->platform; } /** * Output only. The app publisher. * * @param string $publisher */ public function setPublisher($publisher) { $this->publisher = $publisher; } /** * @return string */ public function getPublisher() { return $this->publisher; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MobileApp::class, 'Google_Service_DisplayVideo_MobileApp');