Method: PureCloud::EdgeGroup#build_from_hash

Defined in:
lib/purecloud/models/edge_group.rb

#build_from_hash(attributes) ⇒ Object

build the object from hash



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/purecloud/models/edge_group.rb', line 244

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /^Array<(.*)>/i
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
      else
        #TODO show warning in debug mode
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    else
      # data not found in attributes(hash), not an issue as the data can be optional
    end
  end

  self
end