| 1 | <?php |
||
| 8 | class MarketGroup extends Base |
||
| 9 | { |
||
| 10 | public $parentGroup; |
||
| 11 | |||
| 12 | public $href; |
||
| 13 | |||
| 14 | public $name; |
||
| 15 | |||
| 16 | public $types; |
||
| 17 | |||
| 18 | public $description; |
||
| 19 | |||
| 20 | // by Warringer\Types\Reference |
||
| 21 | public function setParentGroup($parentGroup) |
||
| 25 | |||
| 26 | // by Warringer\Types\Uri |
||
| 27 | public function setHref($href) |
||
| 31 | |||
| 32 | // by Warringer\Types\String |
||
| 33 | public function setName($name) |
||
| 37 | |||
| 38 | // by Warringer\Types\Reference |
||
| 39 | public function setTypes($types) |
||
| 43 | |||
| 44 | // by Warringer\Types\String |
||
| 45 | public function setDescription($description) |
||
| 49 | |||
| 50 | } |
||
| 51 |