Няма описание

ThumbnailDetails.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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_ThumbnailDetails extends Google_Model
  18. {
  19. protected $defaultType = 'Google_Service_YouTube_Thumbnail';
  20. protected $defaultDataType = '';
  21. protected $highType = 'Google_Service_YouTube_Thumbnail';
  22. protected $highDataType = '';
  23. protected $maxresType = 'Google_Service_YouTube_Thumbnail';
  24. protected $maxresDataType = '';
  25. protected $mediumType = 'Google_Service_YouTube_Thumbnail';
  26. protected $mediumDataType = '';
  27. protected $standardType = 'Google_Service_YouTube_Thumbnail';
  28. protected $standardDataType = '';
  29. /**
  30. * @param Google_Service_YouTube_Thumbnail
  31. */
  32. public function setDefault(Google_Service_YouTube_Thumbnail $default)
  33. {
  34. $this->default = $default;
  35. }
  36. /**
  37. * @return Google_Service_YouTube_Thumbnail
  38. */
  39. public function getDefault()
  40. {
  41. return $this->default;
  42. }
  43. /**
  44. * @param Google_Service_YouTube_Thumbnail
  45. */
  46. public function setHigh(Google_Service_YouTube_Thumbnail $high)
  47. {
  48. $this->high = $high;
  49. }
  50. /**
  51. * @return Google_Service_YouTube_Thumbnail
  52. */
  53. public function getHigh()
  54. {
  55. return $this->high;
  56. }
  57. /**
  58. * @param Google_Service_YouTube_Thumbnail
  59. */
  60. public function setMaxres(Google_Service_YouTube_Thumbnail $maxres)
  61. {
  62. $this->maxres = $maxres;
  63. }
  64. /**
  65. * @return Google_Service_YouTube_Thumbnail
  66. */
  67. public function getMaxres()
  68. {
  69. return $this->maxres;
  70. }
  71. /**
  72. * @param Google_Service_YouTube_Thumbnail
  73. */
  74. public function setMedium(Google_Service_YouTube_Thumbnail $medium)
  75. {
  76. $this->medium = $medium;
  77. }
  78. /**
  79. * @return Google_Service_YouTube_Thumbnail
  80. */
  81. public function getMedium()
  82. {
  83. return $this->medium;
  84. }
  85. /**
  86. * @param Google_Service_YouTube_Thumbnail
  87. */
  88. public function setStandard(Google_Service_YouTube_Thumbnail $standard)
  89. {
  90. $this->standard = $standard;
  91. }
  92. /**
  93. * @return Google_Service_YouTube_Thumbnail
  94. */
  95. public function getStandard()
  96. {
  97. return $this->standard;
  98. }
  99. }