id = $id; $this->refresh_token = $refresh_token; $this->expires_in = $expires_in; $this->end_time = $end_time; $this->scope = $scope; $this->session_key = $session_key; $this->access_token = $access_token; $this->session_secret = $session_secret; } /** * @return mixed */ public function getId() { return $this->id; } /** * @return mixed */ public function getRefreshToken() { return $this->refresh_token; } /** * @return mixed */ public function getExpiresIn() { return $this->expires_in; } /** * @return false|string */ public function getEndTime() { return $this->end_time; } /** * @return mixed */ public function getScope() { return $this->scope; } /** * @return mixed */ public function getSessionKey() { return $this->session_key; } /** * @return mixed */ public function getAccessToken() { return $this->access_token; } /** * @return mixed */ public function getSessionSecret() { return $this->session_secret; } }