class Comet::WebAuthnAuthenticatorSelection
def from_hash(obj)
-
obj
(Hash
) -- The complete object as a Ruby hash
def from_hash(obj) raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash obj.each do |k, v| case k when 'authenticatorAttachment' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @authenticator_attachment = v when 'requireResidentKey' @require_resident_key = v when 'residentKey' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @resident_key = v when 'userVerification' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @user_verification = v else @unknown_json_fields[k] = v end end end