class Sezame::Response::Register

represents the registration response returns the clientcode and the shared secret

Public Instance Methods

get_clientcode() click to toggle source
# File lib/sezame-sdk/response.rb, line 65
def get_clientcode
  @data['clientcode']
end
get_sharedsecret() click to toggle source
# File lib/sezame-sdk/response.rb, line 69
def get_sharedsecret
  @data['sharedsecret']
end
is_ok() click to toggle source
Calls superclass method Sezame::Response::Generic#is_ok
# File lib/sezame-sdk/response.rb, line 61
def is_ok
  super && @data.has_key?('clientcode')
end