Google_LocalizedString
The WordPress Core Google LocalizedString class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_LocalizedString extends Google_Model {
- public $language;
- public $value;
- public function setLanguage( $language) {
- $this->language = $language;
- }
- public function getLanguage() {
- return $this->language;
- }
- public function setValue( $value) {
- $this->value = $value;
- }
- public function getValue() {
- return $this->value;
- }
- }