Ei kuvausta

StyleSetting.php 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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_Fusiontables_StyleSetting extends Google_Model
  18. {
  19. public $kind;
  20. protected $markerOptionsType = 'Google_Service_Fusiontables_PointStyle';
  21. protected $markerOptionsDataType = '';
  22. public $name;
  23. protected $polygonOptionsType = 'Google_Service_Fusiontables_PolygonStyle';
  24. protected $polygonOptionsDataType = '';
  25. protected $polylineOptionsType = 'Google_Service_Fusiontables_LineStyle';
  26. protected $polylineOptionsDataType = '';
  27. public $styleId;
  28. public $tableId;
  29. public function setKind($kind)
  30. {
  31. $this->kind = $kind;
  32. }
  33. public function getKind()
  34. {
  35. return $this->kind;
  36. }
  37. /**
  38. * @param Google_Service_Fusiontables_PointStyle
  39. */
  40. public function setMarkerOptions(Google_Service_Fusiontables_PointStyle $markerOptions)
  41. {
  42. $this->markerOptions = $markerOptions;
  43. }
  44. /**
  45. * @return Google_Service_Fusiontables_PointStyle
  46. */
  47. public function getMarkerOptions()
  48. {
  49. return $this->markerOptions;
  50. }
  51. public function setName($name)
  52. {
  53. $this->name = $name;
  54. }
  55. public function getName()
  56. {
  57. return $this->name;
  58. }
  59. /**
  60. * @param Google_Service_Fusiontables_PolygonStyle
  61. */
  62. public function setPolygonOptions(Google_Service_Fusiontables_PolygonStyle $polygonOptions)
  63. {
  64. $this->polygonOptions = $polygonOptions;
  65. }
  66. /**
  67. * @return Google_Service_Fusiontables_PolygonStyle
  68. */
  69. public function getPolygonOptions()
  70. {
  71. return $this->polygonOptions;
  72. }
  73. /**
  74. * @param Google_Service_Fusiontables_LineStyle
  75. */
  76. public function setPolylineOptions(Google_Service_Fusiontables_LineStyle $polylineOptions)
  77. {
  78. $this->polylineOptions = $polylineOptions;
  79. }
  80. /**
  81. * @return Google_Service_Fusiontables_LineStyle
  82. */
  83. public function getPolylineOptions()
  84. {
  85. return $this->polylineOptions;
  86. }
  87. public function setStyleId($styleId)
  88. {
  89. $this->styleId = $styleId;
  90. }
  91. public function getStyleId()
  92. {
  93. return $this->styleId;
  94. }
  95. public function setTableId($tableId)
  96. {
  97. $this->tableId = $tableId;
  98. }
  99. public function getTableId()
  100. {
  101. return $this->tableId;
  102. }
  103. }