class Comet::EDBFileInfo
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 'Name' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @name = v when 'Guid' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @guid = v when 'ServerName' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @server_name = v when 'CircularLoggingEnabled' @circular_logging_enabled = v else @unknown_json_fields[k] = v end end end