Brak opisu

Group.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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_YouTubeAnalytics_Group extends Google_Model
  18. {
  19. protected $contentDetailsType = 'Google_Service_YouTubeAnalytics_GroupContentDetails';
  20. protected $contentDetailsDataType = '';
  21. protected $errorsType = 'Google_Service_YouTubeAnalytics_Errors';
  22. protected $errorsDataType = '';
  23. public $etag;
  24. public $id;
  25. public $kind;
  26. protected $snippetType = 'Google_Service_YouTubeAnalytics_GroupSnippet';
  27. protected $snippetDataType = '';
  28. /**
  29. * @param Google_Service_YouTubeAnalytics_GroupContentDetails
  30. */
  31. public function setContentDetails(Google_Service_YouTubeAnalytics_GroupContentDetails $contentDetails)
  32. {
  33. $this->contentDetails = $contentDetails;
  34. }
  35. /**
  36. * @return Google_Service_YouTubeAnalytics_GroupContentDetails
  37. */
  38. public function getContentDetails()
  39. {
  40. return $this->contentDetails;
  41. }
  42. /**
  43. * @param Google_Service_YouTubeAnalytics_Errors
  44. */
  45. public function setErrors(Google_Service_YouTubeAnalytics_Errors $errors)
  46. {
  47. $this->errors = $errors;
  48. }
  49. /**
  50. * @return Google_Service_YouTubeAnalytics_Errors
  51. */
  52. public function getErrors()
  53. {
  54. return $this->errors;
  55. }
  56. public function setEtag($etag)
  57. {
  58. $this->etag = $etag;
  59. }
  60. public function getEtag()
  61. {
  62. return $this->etag;
  63. }
  64. public function setId($id)
  65. {
  66. $this->id = $id;
  67. }
  68. public function getId()
  69. {
  70. return $this->id;
  71. }
  72. public function setKind($kind)
  73. {
  74. $this->kind = $kind;
  75. }
  76. public function getKind()
  77. {
  78. return $this->kind;
  79. }
  80. /**
  81. * @param Google_Service_YouTubeAnalytics_GroupSnippet
  82. */
  83. public function setSnippet(Google_Service_YouTubeAnalytics_GroupSnippet $snippet)
  84. {
  85. $this->snippet = $snippet;
  86. }
  87. /**
  88. * @return Google_Service_YouTubeAnalytics_GroupSnippet
  89. */
  90. public function getSnippet()
  91. {
  92. return $this->snippet;
  93. }
  94. }