class Sezame::Response::Sign

represents the sign response returns the certificate

Public Instance Methods

get_cert() click to toggle source
# File lib/sezame-sdk/response.rb, line 81
def get_cert
  @data['cert']
end
is_ok() click to toggle source
Calls superclass method Sezame::Response::Generic#is_ok
# File lib/sezame-sdk/response.rb, line 77
def is_ok
  super && @data.has_key?('cert')
end