1 | <?php |
||
35 | class Hook extends CommonBaseEntity |
||
36 | { |
||
37 | /** |
||
38 | * @ORM\Column(name="hookId",type="string", length=255, unique=true, nullable=false); |
||
39 | * |
||
40 | */ |
||
41 | |||
42 | private $hookId; |
||
43 | |||
44 | /** |
||
45 | * @ORM\Column(name="hook_creation_date",type="string", length=255, nullable=false); |
||
46 | * |
||
47 | */ |
||
48 | |||
49 | private $hookCreationDate; |
||
50 | |||
51 | /** |
||
52 | * @ORM\Column(name="hook_tag",type="string", length=255, nullable=false); |
||
53 | * |
||
54 | */ |
||
55 | |||
56 | private $hookTag; |
||
57 | |||
58 | /** |
||
59 | * @ORM\Column(name="hook_url",type="string", length=255, nullable=false); |
||
60 | * |
||
61 | */ |
||
62 | |||
63 | private $hookUrl; |
||
64 | |||
65 | /** |
||
66 | * @ORM\Column(name="hook_status",type="string", length=255, nullable=false); |
||
67 | * |
||
68 | */ |
||
69 | |||
70 | private $hookStatus; |
||
71 | |||
72 | /** |
||
73 | * @ORM\Column(name="hook_validity",type="string", length=255, nullable=false); |
||
74 | * |
||
75 | */ |
||
76 | |||
77 | private $hookValidity; |
||
78 | |||
79 | /** |
||
80 | * @ORM\Column(name="hook_event_type",type="string", length=255, nullable=false); |
||
81 | * |
||
82 | */ |
||
83 | |||
84 | private $hookEventType; |
||
85 | |||
86 | /** |
||
87 | * @ORM\Column(name="raw_hook_data",type="string", length=500, nullable=false); |
||
88 | * |
||
89 | */ |
||
90 | |||
91 | private $rawHookData; |
||
92 | |||
93 | /** |
||
94 | * @var string |
||
95 | * |
||
96 | * @ORM\Column(name="status", type="string", length=200, nullable=false) |
||
97 | */ |
||
98 | protected $status; |
||
99 | |||
100 | public function __construct() |
||
105 | |||
106 | /** |
||
107 | * @return mixed |
||
108 | */ |
||
109 | public function getHookId() |
||
113 | |||
114 | /** |
||
115 | * @param mixed $hookId |
||
116 | */ |
||
117 | public function setHookId($hookId) |
||
121 | |||
122 | /** |
||
123 | * @return mixed |
||
124 | */ |
||
125 | public function getHookCreationDate() |
||
129 | |||
130 | /** |
||
131 | * @param mixed $hookCreationDate |
||
132 | */ |
||
133 | public function setHookCreationDate($hookCreationDate) |
||
137 | |||
138 | /** |
||
139 | * @return mixed |
||
140 | */ |
||
141 | public function getHookTag() |
||
145 | |||
146 | /** |
||
147 | * @param mixed $hookTag |
||
148 | */ |
||
149 | public function setHookTag($hookTag) |
||
153 | |||
154 | /** |
||
155 | * @return mixed |
||
156 | */ |
||
157 | public function getHookUrl() |
||
161 | |||
162 | /** |
||
163 | * @param mixed $hookUrl |
||
164 | */ |
||
165 | public function setHookUrl($hookUrl) |
||
169 | |||
170 | /** |
||
171 | * @return mixed |
||
172 | */ |
||
173 | public function getHookStatus() |
||
177 | |||
178 | /** |
||
179 | * @param mixed $hookStatus |
||
180 | */ |
||
181 | public function setHookStatus($hookStatus) |
||
185 | |||
186 | /** |
||
187 | * @return mixed |
||
188 | */ |
||
189 | public function getHookValidity() |
||
193 | |||
194 | /** |
||
195 | * @param mixed $hookValidity |
||
196 | */ |
||
197 | public function setHookValidity($hookValidity) |
||
201 | |||
202 | /** |
||
203 | * @return mixed |
||
204 | */ |
||
205 | public function getHookEventType() |
||
209 | |||
210 | /** |
||
211 | * @param mixed $hookEventType |
||
212 | */ |
||
213 | public function setHookEventType($hookEventType) |
||
217 | |||
218 | /** |
||
219 | * @return string |
||
220 | */ |
||
221 | public function getStatus(): string |
||
225 | |||
226 | /** |
||
227 | * @param string $status |
||
228 | */ |
||
229 | public function setStatus(string $status) |
||
233 | |||
234 | /** |
||
235 | * @return mixed |
||
236 | */ |
||
237 | public function getRawHookData() |
||
241 | |||
242 | /** |
||
243 | * @param mixed $rawHookData |
||
244 | */ |
||
245 | public function setRawHookData($rawHookData) |
||
249 | |||
250 | |||
251 | } |