account = $account; return $this; } /** * @return ApiAccount */ public function getAccount() { return $this->account; } /** * @param \DateTime $created * * @return ApiOauthRefreshToken */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * @return \DateTime */ public function getCreated() { return $this->created; } /** * @param integer $expires * * @return ApiOauthRefreshToken */ public function setExpires($expires) { $this->expires = $expires; return $this; } /** * @return integer */ public function getExpires() { return $this->expires; } /** * @param string $refreshToken * * @return ApiOauthRefreshToken */ public function setRefreshToken($refreshToken) { $this->refreshToken = $refreshToken; return $this; } /** * @return string */ public function getRefreshToken() { return $this->refreshToken; } /** * @param string $scope * * @return ApiOauthRefreshToken */ public function setScope($scope) { $this->scope = $scope; return $this; } /** * @return string */ public function getScope() { return $this->scope; } /** * @param \DateTime $updated * * @return ApiOauthRefreshToken */ public function setUpdated(\DateTime $updated) { $this->updated = $updated; return $this; } /** * @return \DateTime */ public function getUpdated() { return $this->updated; } }