Ei kuvausta

LiveBroadcastSnippet.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_YouTube_LiveBroadcastSnippet extends Google_Model
  18. {
  19. public $actualEndTime;
  20. public $actualStartTime;
  21. public $channelId;
  22. public $description;
  23. public $isDefaultBroadcast;
  24. public $liveChatId;
  25. public $publishedAt;
  26. public $scheduledEndTime;
  27. public $scheduledStartTime;
  28. protected $thumbnailsType = 'Google_Service_YouTube_ThumbnailDetails';
  29. protected $thumbnailsDataType = '';
  30. public $title;
  31. public function setActualEndTime($actualEndTime)
  32. {
  33. $this->actualEndTime = $actualEndTime;
  34. }
  35. public function getActualEndTime()
  36. {
  37. return $this->actualEndTime;
  38. }
  39. public function setActualStartTime($actualStartTime)
  40. {
  41. $this->actualStartTime = $actualStartTime;
  42. }
  43. public function getActualStartTime()
  44. {
  45. return $this->actualStartTime;
  46. }
  47. public function setChannelId($channelId)
  48. {
  49. $this->channelId = $channelId;
  50. }
  51. public function getChannelId()
  52. {
  53. return $this->channelId;
  54. }
  55. public function setDescription($description)
  56. {
  57. $this->description = $description;
  58. }
  59. public function getDescription()
  60. {
  61. return $this->description;
  62. }
  63. public function setIsDefaultBroadcast($isDefaultBroadcast)
  64. {
  65. $this->isDefaultBroadcast = $isDefaultBroadcast;
  66. }
  67. public function getIsDefaultBroadcast()
  68. {
  69. return $this->isDefaultBroadcast;
  70. }
  71. public function setLiveChatId($liveChatId)
  72. {
  73. $this->liveChatId = $liveChatId;
  74. }
  75. public function getLiveChatId()
  76. {
  77. return $this->liveChatId;
  78. }
  79. public function setPublishedAt($publishedAt)
  80. {
  81. $this->publishedAt = $publishedAt;
  82. }
  83. public function getPublishedAt()
  84. {
  85. return $this->publishedAt;
  86. }
  87. public function setScheduledEndTime($scheduledEndTime)
  88. {
  89. $this->scheduledEndTime = $scheduledEndTime;
  90. }
  91. public function getScheduledEndTime()
  92. {
  93. return $this->scheduledEndTime;
  94. }
  95. public function setScheduledStartTime($scheduledStartTime)
  96. {
  97. $this->scheduledStartTime = $scheduledStartTime;
  98. }
  99. public function getScheduledStartTime()
  100. {
  101. return $this->scheduledStartTime;
  102. }
  103. /**
  104. * @param Google_Service_YouTube_ThumbnailDetails
  105. */
  106. public function setThumbnails(Google_Service_YouTube_ThumbnailDetails $thumbnails)
  107. {
  108. $this->thumbnails = $thumbnails;
  109. }
  110. /**
  111. * @return Google_Service_YouTube_ThumbnailDetails
  112. */
  113. public function getThumbnails()
  114. {
  115. return $this->thumbnails;
  116. }
  117. public function setTitle($title)
  118. {
  119. $this->title = $title;
  120. }
  121. public function getTitle()
  122. {
  123. return $this->title;
  124. }
  125. }