device_id = $device_id; $this->device_key = $device_key; $this->ip = $ip; $this->user_agent = $user_agent; $this->timestamp = $timestamp; } /** * @return string|null */ public function get_device_id() { return $this->device_id; } /** * @return string|null */ public function get_device_key() { return $this->device_key; } /** * @return string|null */ public function get_ip() { return $this->ip; } /** * @return string|null */ public function get_user_agent() { return $this->user_agent; } /** * @return int|null */ public function get_timestamp() { return $this->timestamp; } }