Google_ResultFormattedResultsRuleResults
The WordPress Core Google ResultFormattedResultsRuleResults class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_PagespeedonlineService.php
- class Google_ResultFormattedResultsRuleResults extends Google_Model {
- public $localizedRuleName;
- protected $__urlBlocksType = 'Google_ResultFormattedResultsRuleResultsUrlBlocks';
- protected $__urlBlocksDataType = 'array';
- public $urlBlocks;
- public $ruleScore;
- public $ruleImpact;
- public function setLocalizedRuleName($localizedRuleName) {
- $this->localizedRuleName = $localizedRuleName;
- }
- public function getLocalizedRuleName() {
- return $this->localizedRuleName;
- }
- public function setUrlBlocks(/** array(Google_ResultFormattedResultsRuleResultsUrlBlocks) */ $urlBlocks) {
- $this->assertIsArray($urlBlocks, 'Google_ResultFormattedResultsRuleResultsUrlBlocks', __METHOD__);
- $this->urlBlocks = $urlBlocks;
- }
- public function getUrlBlocks() {
- return $this->urlBlocks;
- }
- public function setRuleScore($ruleScore) {
- $this->ruleScore = $ruleScore;
- }
- public function getRuleScore() {
- return $this->ruleScore;
- }
- public function setRuleImpact($ruleImpact) {
- $this->ruleImpact = $ruleImpact;
- }
- public function getRuleImpact() {
- return $this->ruleImpact;
- }
- }