class Comet::SourceIncludePattern
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 'TopDirectory' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @top_directory = v when 'Value' raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String @value = v else @unknown_json_fields[k] = v end end end