1 | <?php |
||
8 | class Webhook extends AbstractObject implements WebhookInterface |
||
9 | { |
||
10 | protected $apiName = 'webhook'; |
||
11 | |||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function getDescription() |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function getModelId() |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function getCallbackURL() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function isActive() |
||
43 | } |
||
44 |