Method: PureCloud::SearchAggregation#initialize
- Defined in:
- lib/purecloud/models/search_aggregation.rb
#initialize(attributes = {}) ⇒ SearchAggregation
Returns a new instance of SearchAggregation.
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/purecloud/models/search_aggregation.rb', line 65 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'field'] self.field = attributes[:'field'] end if attributes[:'name'] self.name = attributes[:'name'] end if attributes[:'type'] self.type = attributes[:'type'] end if attributes[:'value'] self.value = attributes[:'value'] end if attributes[:'size'] self.size = attributes[:'size'] end if attributes[:'order'] if (value = attributes[:'order']).is_a?(Array) self.order = value end end end |