Google_VideoRecordingDetails
The Google Pagespeed Insights Google VideoRecordingDetails class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeService.php
- class Google_VideoRecordingDetails extends Google_Model {
- protected $__locationType = 'Google_GeoPoint';
- protected $__locationDataType = '';
- public $location;
- public $locationDescription;
- public $recordingDate;
- public function setLocation(Google_GeoPoint $location) {
- $this->location = $location;
- }
- public function getLocation() {
- return $this->location;
- }
- public function setLocationDescription($locationDescription) {
- $this->locationDescription = $locationDescription;
- }
- public function getLocationDescription() {
- return $this->locationDescription;
- }
- public function setRecordingDate($recordingDate) {
- $this->recordingDate = $recordingDate;
- }
- public function getRecordingDate() {
- return $this->recordingDate;
- }
- }