| 1 | <?php |
||
| 10 | class ShowResponse implements ApiResponse |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | private $webhook = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param array $webhook |
||
| 19 | */ |
||
| 20 | public function __construct(array $webhook) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param array $data |
||
| 27 | * |
||
| 28 | * @return ShowResponse |
||
| 29 | */ |
||
| 30 | public static function create(array $data) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string|null |
||
| 42 | */ |
||
| 43 | public function getWebhookUrl() |
||
| 49 | } |
||
| 50 |