languageCode = $languageCode; } /** * @return string */ public function getLanguageCode() { return $this->languageCode; } /** * Organizations to which the custom app should be made available. If the * request contains any organizations, then the app will be restricted to only * these organizations. To support the organization linked to the developer * account, the organization ID should be provided explicitly together with * other organizations. If no organizations are provided, then the app is only * available to the organization linked to the developer account. * * @param Organization[] $organizations */ public function setOrganizations($organizations) { $this->organizations = $organizations; } /** * @return Organization[] */ public function getOrganizations() { return $this->organizations; } /** * Output only. Package name of the created Android app. Only present in the * API response. * * @param string $packageName */ public function setPackageName($packageName) { $this->packageName = $packageName; } /** * @return string */ public function getPackageName() { return $this->packageName; } /** * Title for the Android app. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CustomApp::class, 'Google_Service_Playcustomapp_CustomApp');