| 1 | <?php |
||
| 8 | class TournamentTeamMember extends Base |
||
| 9 | { |
||
| 10 | public $alliance; |
||
| 11 | |||
| 12 | public $name; |
||
| 13 | |||
| 14 | public $corporation; |
||
| 15 | |||
| 16 | public $self; |
||
| 17 | |||
| 18 | public $character; |
||
| 19 | |||
| 20 | public $icon; |
||
| 21 | |||
| 22 | // by Warringer\Types\Reference |
||
| 23 | public function setAlliance($alliance) |
||
| 27 | |||
| 28 | // by Warringer\Types\String |
||
| 29 | public function setName($name) |
||
| 33 | |||
| 34 | // by Warringer\Types\Reference |
||
| 35 | public function setCorporation($corporation) |
||
| 39 | |||
| 40 | // by Warringer\Types\Reference |
||
| 41 | public function setSelf($self) |
||
| 45 | |||
| 46 | // by Warringer\Types\Reference |
||
| 47 | public function setCharacter($character) |
||
| 51 | |||
| 52 | // by Warringer\Types\Reference |
||
| 53 | public function setIcon($icon) |
||
| 57 | |||
| 58 | } |
||
| 59 |