Google_VideoContentDetailsRegionRestriction
The Google Pagespeed Insights Google VideoContentDetailsRegionRestriction class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeService.php
- class Google_VideoContentDetailsRegionRestriction extends Google_Model {
- public $allowed;
- public $blocked;
- public function setAllowed(/** array(Google_string) */ $allowed) {
- $this->assertIsArray($allowed, 'Google_string', __METHOD__);
- $this->allowed = $allowed;
- }
- public function getAllowed() {
- return $this->allowed;
- }
- public function setBlocked(/** array(Google_string) */ $blocked) {
- $this->assertIsArray($blocked, 'Google_string', __METHOD__);
- $this->blocked = $blocked;
- }
- public function getBlocked() {
- return $this->blocked;
- }
- }