暫無描述

ProfileFilterLink.php 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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_ProfileFilterLink extends Google_Model
  18. {
  19. protected $filterRefType = 'Google_Service_Analytics_FilterRef';
  20. protected $filterRefDataType = '';
  21. public $id;
  22. public $kind;
  23. protected $profileRefType = 'Google_Service_Analytics_ProfileRef';
  24. protected $profileRefDataType = '';
  25. public $rank;
  26. public $selfLink;
  27. /**
  28. * @param Google_Service_Analytics_FilterRef
  29. */
  30. public function setFilterRef(Google_Service_Analytics_FilterRef $filterRef)
  31. {
  32. $this->filterRef = $filterRef;
  33. }
  34. /**
  35. * @return Google_Service_Analytics_FilterRef
  36. */
  37. public function getFilterRef()
  38. {
  39. return $this->filterRef;
  40. }
  41. public function setId($id)
  42. {
  43. $this->id = $id;
  44. }
  45. public function getId()
  46. {
  47. return $this->id;
  48. }
  49. public function setKind($kind)
  50. {
  51. $this->kind = $kind;
  52. }
  53. public function getKind()
  54. {
  55. return $this->kind;
  56. }
  57. /**
  58. * @param Google_Service_Analytics_ProfileRef
  59. */
  60. public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef)
  61. {
  62. $this->profileRef = $profileRef;
  63. }
  64. /**
  65. * @return Google_Service_Analytics_ProfileRef
  66. */
  67. public function getProfileRef()
  68. {
  69. return $this->profileRef;
  70. }
  71. public function setRank($rank)
  72. {
  73. $this->rank = $rank;
  74. }
  75. public function getRank()
  76. {
  77. return $this->rank;
  78. }
  79. public function setSelfLink($selfLink)
  80. {
  81. $this->selfLink = $selfLink;
  82. }
  83. public function getSelfLink()
  84. {
  85. return $this->selfLink;
  86. }
  87. }