Нема описа

DeveloperMetadataLookup.php 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_Sheets_DeveloperMetadataLookup extends Google_Model
  18. {
  19. public $locationMatchingStrategy;
  20. public $locationType;
  21. public $metadataId;
  22. public $metadataKey;
  23. protected $metadataLocationType = 'Google_Service_Sheets_DeveloperMetadataLocation';
  24. protected $metadataLocationDataType = '';
  25. public $metadataValue;
  26. public $visibility;
  27. public function setLocationMatchingStrategy($locationMatchingStrategy)
  28. {
  29. $this->locationMatchingStrategy = $locationMatchingStrategy;
  30. }
  31. public function getLocationMatchingStrategy()
  32. {
  33. return $this->locationMatchingStrategy;
  34. }
  35. public function setLocationType($locationType)
  36. {
  37. $this->locationType = $locationType;
  38. }
  39. public function getLocationType()
  40. {
  41. return $this->locationType;
  42. }
  43. public function setMetadataId($metadataId)
  44. {
  45. $this->metadataId = $metadataId;
  46. }
  47. public function getMetadataId()
  48. {
  49. return $this->metadataId;
  50. }
  51. public function setMetadataKey($metadataKey)
  52. {
  53. $this->metadataKey = $metadataKey;
  54. }
  55. public function getMetadataKey()
  56. {
  57. return $this->metadataKey;
  58. }
  59. /**
  60. * @param Google_Service_Sheets_DeveloperMetadataLocation
  61. */
  62. public function setMetadataLocation(Google_Service_Sheets_DeveloperMetadataLocation $metadataLocation)
  63. {
  64. $this->metadataLocation = $metadataLocation;
  65. }
  66. /**
  67. * @return Google_Service_Sheets_DeveloperMetadataLocation
  68. */
  69. public function getMetadataLocation()
  70. {
  71. return $this->metadataLocation;
  72. }
  73. public function setMetadataValue($metadataValue)
  74. {
  75. $this->metadataValue = $metadataValue;
  76. }
  77. public function getMetadataValue()
  78. {
  79. return $this->metadataValue;
  80. }
  81. public function setVisibility($visibility)
  82. {
  83. $this->visibility = $visibility;
  84. }
  85. public function getVisibility()
  86. {
  87. return $this->visibility;
  88. }
  89. }