Nessuna descrizione

AccountTreeResponse.php 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_Analytics_AccountTreeResponse extends Google_Model
  18. {
  19. protected $accountType = 'Google_Service_Analytics_Account';
  20. protected $accountDataType = '';
  21. protected $accountSettingsType = 'Google_Service_Analytics_AccountTreeResponseAccountSettings';
  22. protected $accountSettingsDataType = '';
  23. public $kind;
  24. protected $profileType = 'Google_Service_Analytics_Profile';
  25. protected $profileDataType = '';
  26. protected $webpropertyType = 'Google_Service_Analytics_Webproperty';
  27. protected $webpropertyDataType = '';
  28. /**
  29. * @param Google_Service_Analytics_Account
  30. */
  31. public function setAccount(Google_Service_Analytics_Account $account)
  32. {
  33. $this->account = $account;
  34. }
  35. /**
  36. * @return Google_Service_Analytics_Account
  37. */
  38. public function getAccount()
  39. {
  40. return $this->account;
  41. }
  42. /**
  43. * @param Google_Service_Analytics_AccountTreeResponseAccountSettings
  44. */
  45. public function setAccountSettings(Google_Service_Analytics_AccountTreeResponseAccountSettings $accountSettings)
  46. {
  47. $this->accountSettings = $accountSettings;
  48. }
  49. /**
  50. * @return Google_Service_Analytics_AccountTreeResponseAccountSettings
  51. */
  52. public function getAccountSettings()
  53. {
  54. return $this->accountSettings;
  55. }
  56. public function setKind($kind)
  57. {
  58. $this->kind = $kind;
  59. }
  60. public function getKind()
  61. {
  62. return $this->kind;
  63. }
  64. /**
  65. * @param Google_Service_Analytics_Profile
  66. */
  67. public function setProfile(Google_Service_Analytics_Profile $profile)
  68. {
  69. $this->profile = $profile;
  70. }
  71. /**
  72. * @return Google_Service_Analytics_Profile
  73. */
  74. public function getProfile()
  75. {
  76. return $this->profile;
  77. }
  78. /**
  79. * @param Google_Service_Analytics_Webproperty
  80. */
  81. public function setWebproperty(Google_Service_Analytics_Webproperty $webproperty)
  82. {
  83. $this->webproperty = $webproperty;
  84. }
  85. /**
  86. * @return Google_Service_Analytics_Webproperty
  87. */
  88. public function getWebproperty()
  89. {
  90. return $this->webproperty;
  91. }
  92. }