Google_VideoProcessingDetailsProcessingProgress
The Google Pagespeed Insights Google VideoProcessingDetailsProcessingProgress class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeService.php
- class Google_VideoProcessingDetailsProcessingProgress extends Google_Model {
- public $partsProcessed;
- public $partsTotal;
- public $timeLeftMs;
- public function setPartsProcessed($partsProcessed) {
- $this->partsProcessed = $partsProcessed;
- }
- public function getPartsProcessed() {
- return $this->partsProcessed;
- }
- public function setPartsTotal($partsTotal) {
- $this->partsTotal = $partsTotal;
- }
- public function getPartsTotal() {
- return $this->partsTotal;
- }
- public function setTimeLeftMs($timeLeftMs) {
- $this->timeLeftMs = $timeLeftMs;
- }
- public function getTimeLeftMs() {
- return $this->timeLeftMs;
- }
- }