1 | <?php |
||
7 | class EveOnlineResourceOwner extends GenericResourceOwner |
||
8 | { |
||
9 | /** |
||
10 | * Raw response |
||
11 | * |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $response; |
||
15 | |||
16 | |||
17 | /** |
||
18 | * Creates new resource owner. |
||
19 | * |
||
20 | * @param array $response |
||
21 | */ |
||
22 | 3 | public function __construct(array $response = array()) |
|
26 | |||
27 | /** |
||
28 | * Get user characterID |
||
29 | * |
||
30 | * @return string|null |
||
31 | */ |
||
32 | 3 | public function getCharacterID() |
|
36 | |||
37 | /** |
||
38 | * Get user characterName |
||
39 | * |
||
40 | * @return string|null |
||
41 | */ |
||
42 | 3 | public function getCharacterName() |
|
46 | |||
47 | /** |
||
48 | * Get user CharacterOwnerHash |
||
49 | * |
||
50 | * @return string|null |
||
51 | */ |
||
52 | 3 | public function getCharacterOwnerHash() |
|
56 | |||
57 | /** |
||
58 | * Return all of the owner details available as an array. |
||
59 | * |
||
60 | * @return array |
||
61 | */ |
||
62 | 3 | public function toArray() |
|
66 | } |
||
67 |