1 | <?php |
||
7 | class Webhook |
||
8 | { |
||
9 | public const SOURCE_CHARGEABLE = 'source.chargeable'; |
||
10 | |||
11 | public $id; |
||
12 | public $type; |
||
13 | public $secret_key; |
||
14 | public $status; |
||
15 | public $url; |
||
16 | public $events; |
||
17 | public $updated_at; |
||
18 | public $created_at; |
||
19 | |||
20 | public function setData($data) |
||
34 | |||
35 | protected function convertToObject($data) |
||
55 | |||
56 | public function enable() |
||
60 | |||
61 | public function disable() |
||
65 | |||
66 | public function update($payload) |
||
70 | } |
||
71 |