class Authenticator::Client::AuthenticateResponse
Public Class Methods
new(response)
click to toggle source
Calls superclass method
# File lib/authenticator/client/authenticate_response.rb, line 6 def initialize(response) super end
Public Instance Methods
account()
click to toggle source
# File lib/authenticator/client/authenticate_response.rb, line 10 def account Account.from_json(json) end
authenticated?()
click to toggle source
# File lib/authenticator/client/authenticate_response.rb, line 14 def authenticated? json['authenticated'] == true end