Google_UserLocale
The Google Pagespeed Insights Google UserLocale class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BloggerService.php
- class Google_UserLocale extends Google_Model {
- public $country;
- public $variant;
- public $language;
- public function setCountry($country) {
- $this->country = $country;
- }
- public function getCountry() {
- return $this->country;
- }
- public function setVariant($variant) {
- $this->variant = $variant;
- }
- public function getVariant() {
- return $this->variant;
- }
- public function setLanguage($language) {
- $this->language = $language;
- }
- public function getLanguage() {
- return $this->language;
- }
- }