state; } /** * @return string */ public function getType() { return $this->type; } /** * @return string */ public function getMedia() { return $this->media; } /** * @return string */ public function getIpv4() { return $this->ipv4; } /** * @return string */ public function getIpv6() { return $this->ipv6; } /** * @return int */ public function getRateUp() { return $this->rate_up; } /** * @return int */ public function getRateDown() { return $this->rate_down; } /** * @return int */ public function getBandwidthUp() { return $this->bandwidth_up; } /** * @return int */ public function getBandwidthDown() { return $this->bandwidth_down; } /** * @return int */ public function getBytesUp() { return $this->bytes_up; } /** * @return int */ public function getBytesDown() { return $this->bytes_down; } }