1 | <?php |
||
8 | class Character extends Base |
||
9 | { |
||
10 | public $standings; |
||
11 | |||
12 | public $bloodLine; |
||
13 | |||
14 | public $private; |
||
15 | |||
16 | public $channels; |
||
17 | |||
18 | public $href; |
||
19 | |||
20 | public $accounts; |
||
21 | |||
22 | public $portrait; |
||
23 | |||
24 | public $id; |
||
25 | |||
26 | public $blocked; |
||
27 | |||
28 | public $statistics; |
||
29 | |||
30 | public $contacts; |
||
31 | |||
32 | public $corporation; |
||
33 | |||
34 | public $vipLevel; |
||
35 | |||
36 | public $capsuleer; |
||
37 | |||
38 | public $vivox; |
||
39 | |||
40 | public $description; |
||
41 | |||
42 | public $notifications; |
||
43 | |||
44 | public $mail; |
||
45 | |||
46 | public $name; |
||
47 | |||
48 | public $gender; |
||
49 | |||
50 | public $mercenary; |
||
51 | |||
52 | public $race; |
||
53 | |||
54 | public $deposit; |
||
55 | |||
56 | // by Warringer\Types\Reference |
||
57 | public function setStandings($standings) |
||
61 | |||
62 | // by Warringer\Types\Reference |
||
63 | public function setBloodLine($bloodLine) |
||
67 | |||
68 | // by Warringer\Types\Reference |
||
69 | public function setPrivate($private) |
||
73 | |||
74 | // by Warringer\Types\Reference |
||
75 | public function setChannels($channels) |
||
79 | |||
80 | // by Warringer\Types\Uri |
||
81 | public function setHref($href) |
||
85 | |||
86 | // by Warringer\Types\Reference |
||
87 | public function setAccounts($accounts) |
||
91 | |||
92 | // by Warringer\Types\Dict |
||
93 | public function setPortrait($portrait) |
||
112 | |||
113 | // by Warringer\Types\Long |
||
114 | public function setId($id) |
||
118 | |||
119 | // by Warringer\Types\Reference |
||
120 | public function setBlocked($blocked) |
||
124 | |||
125 | // by Warringer\Types\Reference |
||
126 | public function setStatistics($statistics) |
||
130 | |||
131 | // by Warringer\Types\Reference |
||
132 | public function setContacts($contacts) |
||
136 | |||
137 | // by Warringer\Types\Dict |
||
138 | public function setCorporation($corporation) |
||
159 | |||
160 | // by Warringer\Types\Long |
||
161 | public function setVipLevel($vipLevel) |
||
165 | |||
166 | // by Warringer\Types\Reference |
||
167 | public function setCapsuleer($capsuleer) |
||
171 | |||
172 | // by Warringer\Types\Reference |
||
173 | public function setVivox($vivox) |
||
177 | |||
178 | // by Warringer\Types\String |
||
179 | public function setDescription($description) |
||
183 | |||
184 | // by Warringer\Types\Reference |
||
185 | public function setNotifications($notifications) |
||
189 | |||
190 | // by Warringer\Types\Reference |
||
191 | public function setMail($mail) |
||
195 | |||
196 | // by Warringer\Types\String |
||
197 | public function setName($name) |
||
201 | |||
202 | // by Warringer\Types\Long |
||
203 | public function setGender($gender) |
||
207 | |||
208 | // by Warringer\Types\Reference |
||
209 | public function setMercenary($mercenary) |
||
213 | |||
214 | // by Warringer\Types\Reference |
||
215 | public function setRace($race) |
||
219 | |||
220 | // by Warringer\Types\Reference |
||
221 | public function setDeposit($deposit) |
||
225 | |||
226 | } |
||
227 |