1 | <?php |
||
5 | class BrokenLink extends ApiResource |
||
6 | { |
||
7 | /** |
||
8 | * The status code the site responded with. |
||
9 | * |
||
10 | * @var int|null |
||
11 | */ |
||
12 | public $statusCode; |
||
13 | |||
14 | /** |
||
15 | * The url that is broken. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | public $crawledUrl; |
||
20 | |||
21 | /** |
||
22 | * The url where the broken url was found. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | public $foundOnUrl; |
||
27 | |||
28 | public function __construct(array $attributes, $ohDear = null) |
||
32 | } |
||
33 |