Class: CustomerioAPI::Object
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- CustomerioAPI::Object
show all
- Defined in:
- lib/customerio_api/object.rb
Instance Method Summary
collapse
Constructor Details
#initialize(attributes) ⇒ Object
8
9
10
|
# File 'lib/customerio_api/object.rb', line 8
def initialize(attributes)
super to_ostruct(attributes)
end
|
Instance Method Details
#to_ostruct(obj) ⇒ Object
12
13
14
15
16
17
18
19
20
|
# File 'lib/customerio_api/object.rb', line 12
def to_ostruct(obj)
if obj.is_a?(Hash)
OpenStruct.new(obj.map { |key, val| [key.underscore, to_ostruct(val)] }.to_h)
elsif obj.is_a?(Array)
obj.map { |o| to_ostruct(o) }
else obj
end
end
|