Class: SekoEcomAPI::Object

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/seko_ecom_api/object.rb

Direct Known Subclasses

Rate, Shipment

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Object

Returns a new instance of Object.



6
7
8
# File 'lib/seko_ecom_api/object.rb', line 6

def initialize(attributes)
  super to_ostruct(attributes)
end

Instance Method Details

#to_ostruct(obj) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'lib/seko_ecom_api/object.rb', line 10

def to_ostruct(obj)
  if obj.is_a? Hash
    OpenStruct.new(obj.transform_values { |val| to_ostruct(val) }.to_h)
  elsif obj.is_a? Array
    obj.map { |o| to_ostruct(o) }
  else
    obj
  end
end