Нет описания

DistributionUpdate.php 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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_Dataflow_DistributionUpdate extends Google_Model
  18. {
  19. protected $countType = 'Google_Service_Dataflow_SplitInt64';
  20. protected $countDataType = '';
  21. protected $histogramType = 'Google_Service_Dataflow_Histogram';
  22. protected $histogramDataType = '';
  23. protected $maxType = 'Google_Service_Dataflow_SplitInt64';
  24. protected $maxDataType = '';
  25. protected $minType = 'Google_Service_Dataflow_SplitInt64';
  26. protected $minDataType = '';
  27. protected $sumType = 'Google_Service_Dataflow_SplitInt64';
  28. protected $sumDataType = '';
  29. public $sumOfSquares;
  30. /**
  31. * @param Google_Service_Dataflow_SplitInt64
  32. */
  33. public function setCount(Google_Service_Dataflow_SplitInt64 $count)
  34. {
  35. $this->count = $count;
  36. }
  37. /**
  38. * @return Google_Service_Dataflow_SplitInt64
  39. */
  40. public function getCount()
  41. {
  42. return $this->count;
  43. }
  44. /**
  45. * @param Google_Service_Dataflow_Histogram
  46. */
  47. public function setHistogram(Google_Service_Dataflow_Histogram $histogram)
  48. {
  49. $this->histogram = $histogram;
  50. }
  51. /**
  52. * @return Google_Service_Dataflow_Histogram
  53. */
  54. public function getHistogram()
  55. {
  56. return $this->histogram;
  57. }
  58. /**
  59. * @param Google_Service_Dataflow_SplitInt64
  60. */
  61. public function setMax(Google_Service_Dataflow_SplitInt64 $max)
  62. {
  63. $this->max = $max;
  64. }
  65. /**
  66. * @return Google_Service_Dataflow_SplitInt64
  67. */
  68. public function getMax()
  69. {
  70. return $this->max;
  71. }
  72. /**
  73. * @param Google_Service_Dataflow_SplitInt64
  74. */
  75. public function setMin(Google_Service_Dataflow_SplitInt64 $min)
  76. {
  77. $this->min = $min;
  78. }
  79. /**
  80. * @return Google_Service_Dataflow_SplitInt64
  81. */
  82. public function getMin()
  83. {
  84. return $this->min;
  85. }
  86. /**
  87. * @param Google_Service_Dataflow_SplitInt64
  88. */
  89. public function setSum(Google_Service_Dataflow_SplitInt64 $sum)
  90. {
  91. $this->sum = $sum;
  92. }
  93. /**
  94. * @return Google_Service_Dataflow_SplitInt64
  95. */
  96. public function getSum()
  97. {
  98. return $this->sum;
  99. }
  100. public function setSumOfSquares($sumOfSquares)
  101. {
  102. $this->sumOfSquares = $sumOfSquares;
  103. }
  104. public function getSumOfSquares()
  105. {
  106. return $this->sumOfSquares;
  107. }
  108. }