Bez popisu

ErrorProto.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_YouTubeAnalytics_ErrorProto extends Google_Collection
  18. {
  19. protected $collection_key = 'argument';
  20. public $argument;
  21. public $code;
  22. public $debugInfo;
  23. public $domain;
  24. public $externalErrorMessage;
  25. public $location;
  26. public $locationType;
  27. public function setArgument($argument)
  28. {
  29. $this->argument = $argument;
  30. }
  31. public function getArgument()
  32. {
  33. return $this->argument;
  34. }
  35. public function setCode($code)
  36. {
  37. $this->code = $code;
  38. }
  39. public function getCode()
  40. {
  41. return $this->code;
  42. }
  43. public function setDebugInfo($debugInfo)
  44. {
  45. $this->debugInfo = $debugInfo;
  46. }
  47. public function getDebugInfo()
  48. {
  49. return $this->debugInfo;
  50. }
  51. public function setDomain($domain)
  52. {
  53. $this->domain = $domain;
  54. }
  55. public function getDomain()
  56. {
  57. return $this->domain;
  58. }
  59. public function setExternalErrorMessage($externalErrorMessage)
  60. {
  61. $this->externalErrorMessage = $externalErrorMessage;
  62. }
  63. public function getExternalErrorMessage()
  64. {
  65. return $this->externalErrorMessage;
  66. }
  67. public function setLocation($location)
  68. {
  69. $this->location = $location;
  70. }
  71. public function getLocation()
  72. {
  73. return $this->location;
  74. }
  75. public function setLocationType($locationType)
  76. {
  77. $this->locationType = $locationType;
  78. }
  79. public function getLocationType()
  80. {
  81. return $this->locationType;
  82. }
  83. }