Ei kuvausta

ChannelBrandingSettings.php 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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_ChannelBrandingSettings extends Google_Collection
  18. {
  19. protected $collection_key = 'hints';
  20. protected $channelType = 'Google_Service_YouTube_ChannelSettings';
  21. protected $channelDataType = '';
  22. protected $hintsType = 'Google_Service_YouTube_PropertyValue';
  23. protected $hintsDataType = 'array';
  24. protected $imageType = 'Google_Service_YouTube_ImageSettings';
  25. protected $imageDataType = '';
  26. protected $watchType = 'Google_Service_YouTube_WatchSettings';
  27. protected $watchDataType = '';
  28. /**
  29. * @param Google_Service_YouTube_ChannelSettings
  30. */
  31. public function setChannel(Google_Service_YouTube_ChannelSettings $channel)
  32. {
  33. $this->channel = $channel;
  34. }
  35. /**
  36. * @return Google_Service_YouTube_ChannelSettings
  37. */
  38. public function getChannel()
  39. {
  40. return $this->channel;
  41. }
  42. /**
  43. * @param Google_Service_YouTube_PropertyValue
  44. */
  45. public function setHints($hints)
  46. {
  47. $this->hints = $hints;
  48. }
  49. /**
  50. * @return Google_Service_YouTube_PropertyValue
  51. */
  52. public function getHints()
  53. {
  54. return $this->hints;
  55. }
  56. /**
  57. * @param Google_Service_YouTube_ImageSettings
  58. */
  59. public function setImage(Google_Service_YouTube_ImageSettings $image)
  60. {
  61. $this->image = $image;
  62. }
  63. /**
  64. * @return Google_Service_YouTube_ImageSettings
  65. */
  66. public function getImage()
  67. {
  68. return $this->image;
  69. }
  70. /**
  71. * @param Google_Service_YouTube_WatchSettings
  72. */
  73. public function setWatch(Google_Service_YouTube_WatchSettings $watch)
  74. {
  75. $this->watch = $watch;
  76. }
  77. /**
  78. * @return Google_Service_YouTube_WatchSettings
  79. */
  80. public function getWatch()
  81. {
  82. return $this->watch;
  83. }
  84. }