*/ class Prepaid { /** * @var BillShipper */ private $billShipper; public function __construct($attributes = null) { $this->setBillShipper(new BillShipper($attributes)); } /** * @return BillShipper */ public function getBillShipper() { return $this->billShipper; } /** * @param BillShipper $billShipper */ public function setBillShipper($billShipper) { $this->billShipper = $billShipper; } }