class Vultr::Object
Public Class Methods
Source
# File lib/vultr/object.rb, line 5 def initialize(attributes) super(to_ostruct(attributes)) end
Calls superclass method
Public Instance Methods
Source
# File lib/vultr/object.rb, line 9 def to_ostruct(obj) if obj.is_a?(Hash) OpenStruct.new(obj.map { |key, val| [key, to_ostruct(val)] }.to_h) elsif obj.is_a?(Array) obj.map { |o| to_ostruct(o) } else # Assumed to be a primitive value obj end end