Google_LocalizedProperty
The Google Pagespeed Insights Google LocalizedProperty class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeService.php
- class Google_LocalizedProperty extends Google_Model {
- public $default;
- protected $__localizedType = 'Google_LocalizedString';
- protected $__localizedDataType = 'array';
- public $localized;
- public function setDefault($default) {
- $this->default = $default;
- }
- public function getDefault() {
- return $this->default;
- }
- public function setLocalized(/** array(Google_LocalizedString) */ $localized) {
- $this->assertIsArray($localized, 'Google_LocalizedString', __METHOD__);
- $this->localized = $localized;
- }
- public function getLocalized() {
- return $this->localized;
- }
- }