1 | <?php |
||
11 | class Request extends LazyResource |
||
12 | { |
||
13 | /* @var User */ |
||
14 | public $user; |
||
15 | |||
16 | /* @var string */ |
||
17 | public $request_id; |
||
18 | |||
19 | public function __construct(Client $client, User $user, $request_id) |
||
25 | |||
26 | /** |
||
27 | * Check if we have the full representation of our data object. |
||
28 | * |
||
29 | * @param \stdClass $data |
||
30 | * |
||
31 | * @return bool |
||
32 | */ |
||
33 | protected function isInitialized($data) |
||
37 | |||
38 | /** |
||
39 | * Generate the base URL for this resource. |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | protected function urlBase() |
||
47 | } |
||
48 |