Google_PlaylistItemContentDetails
The Google Books Importer Google PlaylistItemContentDetails class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_PlaylistItemContentDetails extends Google_Model {
- public $endAtMs;
- public $note;
- public $startAtMs;
- public $videoId;
- public function setEndAtMs( $endAtMs) {
- $this->endAtMs = $endAtMs;
- }
- public function getEndAtMs() {
- return $this->endAtMs;
- }
- public function setNote( $note) {
- $this->note = $note;
- }
- public function getNote() {
- return $this->note;
- }
- public function setStartAtMs( $startAtMs) {
- $this->startAtMs = $startAtMs;
- }
- public function getStartAtMs() {
- return $this->startAtMs;
- }
- public function setVideoId( $videoId) {
- $this->videoId = $videoId;
- }
- public function getVideoId() {
- return $this->videoId;
- }
- }