Google_ResultLabels
The WordPress Core Google ResultLabels class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_CustomsearchService.php
- class Google_ResultLabels extends Google_Model {
- public $displayName;
- public $name;
- public function setDisplayName( $displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setName( $name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- }