src/Entity/WidgetRequest.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. class WidgetRequest
  4. {
  5. private $domain;
  6. private $name;
  7. private $email;
  8. private $widgetType;
  9. private $prefilled;
  10. private $start;
  11. private $startId;
  12. private $end;
  13. private $endId;
  14. private $latitude;
  15. private $longitude;
  16. private $zoom;
  17. private $documentationUrl;
  18. private $subNetworks;
  19. public function setDomain($domain)
  20. {
  21. $this->domain = $domain;
  22. }
  23. public function getDomain()
  24. {
  25. return $this->domain;
  26. }
  27. public function setName($name)
  28. {
  29. $this->name = $name;
  30. }
  31. public function getName()
  32. {
  33. return $this->name;
  34. }
  35. public function setEmail($email)
  36. {
  37. $this->email = $email;
  38. }
  39. public function getEmail()
  40. {
  41. return $this->email;
  42. }
  43. public function setWidgetType($widgetType)
  44. {
  45. $this->widgetType = $widgetType;
  46. }
  47. public function getWidgetType()
  48. {
  49. return $this->widgetType;
  50. }
  51. public function setPrefilled($prefilled)
  52. {
  53. $this->prefilled = $prefilled;
  54. }
  55. public function getPrefilled()
  56. {
  57. return $this->prefilled;
  58. }
  59. public function setStart($start)
  60. {
  61. $this->start = $start;
  62. }
  63. public function getStart()
  64. {
  65. return $this->start;
  66. }
  67. public function setStartId($startId)
  68. {
  69. $this->startId = $startId;
  70. }
  71. public function getStartId()
  72. {
  73. return $this->startId;
  74. }
  75. public function setEnd($end)
  76. {
  77. $this->end = $end;
  78. }
  79. public function getEnd()
  80. {
  81. return $this->end;
  82. }
  83. public function setEndId($endId)
  84. {
  85. $this->endId = $endId;
  86. }
  87. public function getEndId()
  88. {
  89. return $this->endId;
  90. }
  91. public function setLatitude($latitude)
  92. {
  93. $this->latitude = $latitude;
  94. }
  95. public function getLatitude()
  96. {
  97. return $this->latitude;
  98. }
  99. public function setLongitude($longitude)
  100. {
  101. $this->longitude = $longitude;
  102. }
  103. public function getLongitude()
  104. {
  105. return $this->longitude;
  106. }
  107. public function setZoom($zoom)
  108. {
  109. $this->zoom = $zoom;
  110. }
  111. public function getZoom()
  112. {
  113. return $this->zoom;
  114. }
  115. public function getDocumentationUrl(): string
  116. {
  117. return $this->documentationUrl;
  118. }
  119. public function setDocumentationUrl(string $documentationUrl): self
  120. {
  121. $this->documentationUrl = $documentationUrl;
  122. return $this;
  123. }
  124. public function getSubNetworks(): ?array
  125. {
  126. return $this->subNetworks;
  127. }
  128. public function setSubNetworks(array $subNetworks): self
  129. {
  130. $this->subNetworks = $subNetworks;
  131. return $this;
  132. }
  133. }