Class: BasisTheory::Object
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- BasisTheory::Object
- Defined in:
- lib/basis_theory/object.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(attributes) ⇒ Object
constructor
A new instance of Object.
- #to_ostruct(obj) ⇒ Object
Constructor Details
#initialize(attributes) ⇒ Object
Returns a new instance of Object.
7 8 9 |
# File 'lib/basis_theory/object.rb', line 7 def initialize(attributes) super to_ostruct(attributes) end |
Instance Method Details
#to_ostruct(obj) ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/basis_theory/object.rb', line 11 def to_ostruct(obj) case obj when Hash OpenStruct.new(obj.transform_values { |val| to_ostruct(val) }) when Array obj.map { |o| to_ostruct(o) } else obj end end |