class Sezame::Response::Status

auth status response returns the status of the authentication request

Public Instance Methods

is_authorized() click to toggle source
# File lib/sezame-sdk/response.rb, line 101
def is_authorized
  get_status == 'authorized'
end
is_denied() click to toggle source
# File lib/sezame-sdk/response.rb, line 105
def is_denied
  get_status == 'denied'
end
is_pending() click to toggle source
# File lib/sezame-sdk/response.rb, line 109
def is_pending
  get_status == 'initiated'
end