説明なし

SegmentDimensionFilter.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_AnalyticsReporting_SegmentDimensionFilter extends Google_Collection
  18. {
  19. protected $collection_key = 'expressions';
  20. public $caseSensitive;
  21. public $dimensionName;
  22. public $expressions;
  23. public $maxComparisonValue;
  24. public $minComparisonValue;
  25. public $operator;
  26. public function setCaseSensitive($caseSensitive)
  27. {
  28. $this->caseSensitive = $caseSensitive;
  29. }
  30. public function getCaseSensitive()
  31. {
  32. return $this->caseSensitive;
  33. }
  34. public function setDimensionName($dimensionName)
  35. {
  36. $this->dimensionName = $dimensionName;
  37. }
  38. public function getDimensionName()
  39. {
  40. return $this->dimensionName;
  41. }
  42. public function setExpressions($expressions)
  43. {
  44. $this->expressions = $expressions;
  45. }
  46. public function getExpressions()
  47. {
  48. return $this->expressions;
  49. }
  50. public function setMaxComparisonValue($maxComparisonValue)
  51. {
  52. $this->maxComparisonValue = $maxComparisonValue;
  53. }
  54. public function getMaxComparisonValue()
  55. {
  56. return $this->maxComparisonValue;
  57. }
  58. public function setMinComparisonValue($minComparisonValue)
  59. {
  60. $this->minComparisonValue = $minComparisonValue;
  61. }
  62. public function getMinComparisonValue()
  63. {
  64. return $this->minComparisonValue;
  65. }
  66. public function setOperator($operator)
  67. {
  68. $this->operator = $operator;
  69. }
  70. public function getOperator()
  71. {
  72. return $this->operator;
  73. }
  74. }