Google_VideoSuggestionsTagSuggestion
The WordPress Core Google VideoSuggestionsTagSuggestion class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_VideoSuggestionsTagSuggestion extends Google_Model {
- public $categoryRestricts;
- public $tag;
- public function setCategoryRestricts(/** array(Google_string) */ $categoryRestricts) {
- $this->assertIsArray($categoryRestricts, 'Google_string', __METHOD__);
- $this->categoryRestricts = $categoryRestricts;
- }
- public function getCategoryRestricts() {
- return $this->categoryRestricts;
- }
- public function setTag( $tag) {
- $this->tag = $tag;
- }
- public function getTag() {
- return $this->tag;
- }
- }