class Comet::WebAuthnUserEntity
def to_hash
-
(Hash)- The complete object as a Ruby hash
def to_hash ret = {} ret['name'] = @name unless @icon.nil? ret['icon'] = @icon end unless @display_name.nil? ret['displayName'] = @display_name end ret['id'] = Base64.strict_encode64(@id) @unknown_json_fields.each do |k, v| ret[k] = v end ret end