| 1 | <?php |
||
| 17 | class ShowResponse implements ApiResponse |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | private $webhook = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param array $webhook |
||
| 26 | */ |
||
| 27 | public function __construct(array $webhook) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param array $data |
||
| 34 | * |
||
| 35 | * @return ShowResponse |
||
| 36 | */ |
||
| 37 | public static function create(array $data) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return string|null |
||
| 49 | */ |
||
| 50 | public function getWebhookUrl() |
||
| 56 | } |
||
| 57 |