initPropertyArray( 'delegations', Delegation::class); } /** * Return true if IPv6 is enabled * @return boolean */ public function isIpv6Enabled() { return $this->ipv6_enabled; } /** * Enable/Disable IPv6 * @param boolean $ipv6_enabled */ public function setIpv6Enabled( $ipv6_enabled) { $this->ipv6_enabled = $ipv6_enabled; } /** * Get the Freebox IPv6 link local address * @return string */ public function getIpv6ll() { return $this->ipv6ll; } /** * Get a list of IPv6 delegations * @return Delegation[] */ public function getDelegations() { return $this->delegations; } /** * Set a list of IPv6 delegations * @param Delegation[] $delegations */ public function setDelegations( $delegations) { $this->delegations = $delegations; } }