Keine Beschreibung

LiveBroadcast.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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_LiveBroadcast extends Google_Model
  18. {
  19. protected $contentDetailsType = 'Google_Service_YouTube_LiveBroadcastContentDetails';
  20. protected $contentDetailsDataType = '';
  21. public $etag;
  22. public $id;
  23. public $kind;
  24. protected $snippetType = 'Google_Service_YouTube_LiveBroadcastSnippet';
  25. protected $snippetDataType = '';
  26. protected $statisticsType = 'Google_Service_YouTube_LiveBroadcastStatistics';
  27. protected $statisticsDataType = '';
  28. protected $statusType = 'Google_Service_YouTube_LiveBroadcastStatus';
  29. protected $statusDataType = '';
  30. /**
  31. * @param Google_Service_YouTube_LiveBroadcastContentDetails
  32. */
  33. public function setContentDetails(Google_Service_YouTube_LiveBroadcastContentDetails $contentDetails)
  34. {
  35. $this->contentDetails = $contentDetails;
  36. }
  37. /**
  38. * @return Google_Service_YouTube_LiveBroadcastContentDetails
  39. */
  40. public function getContentDetails()
  41. {
  42. return $this->contentDetails;
  43. }
  44. public function setEtag($etag)
  45. {
  46. $this->etag = $etag;
  47. }
  48. public function getEtag()
  49. {
  50. return $this->etag;
  51. }
  52. public function setId($id)
  53. {
  54. $this->id = $id;
  55. }
  56. public function getId()
  57. {
  58. return $this->id;
  59. }
  60. public function setKind($kind)
  61. {
  62. $this->kind = $kind;
  63. }
  64. public function getKind()
  65. {
  66. return $this->kind;
  67. }
  68. /**
  69. * @param Google_Service_YouTube_LiveBroadcastSnippet
  70. */
  71. public function setSnippet(Google_Service_YouTube_LiveBroadcastSnippet $snippet)
  72. {
  73. $this->snippet = $snippet;
  74. }
  75. /**
  76. * @return Google_Service_YouTube_LiveBroadcastSnippet
  77. */
  78. public function getSnippet()
  79. {
  80. return $this->snippet;
  81. }
  82. /**
  83. * @param Google_Service_YouTube_LiveBroadcastStatistics
  84. */
  85. public function setStatistics(Google_Service_YouTube_LiveBroadcastStatistics $statistics)
  86. {
  87. $this->statistics = $statistics;
  88. }
  89. /**
  90. * @return Google_Service_YouTube_LiveBroadcastStatistics
  91. */
  92. public function getStatistics()
  93. {
  94. return $this->statistics;
  95. }
  96. /**
  97. * @param Google_Service_YouTube_LiveBroadcastStatus
  98. */
  99. public function setStatus(Google_Service_YouTube_LiveBroadcastStatus $status)
  100. {
  101. $this->status = $status;
  102. }
  103. /**
  104. * @return Google_Service_YouTube_LiveBroadcastStatus
  105. */
  106. public function getStatus()
  107. {
  108. return $this->status;
  109. }
  110. }