class Fog::Compute::VirtualBox::MediumFormat

Private Instance Methods

raw() click to toggle source
# File lib/fog/virtual_box/models/compute/medium_format.rb, line 16
def raw
  @raw
end
raw=(new_raw) click to toggle source
# File lib/fog/virtual_box/models/compute/medium_format.rb, line 20
def raw=(new_raw)
  @raw = new_raw
  raw_attributes = {}
  for key in [:id, :name]
    raw_attributes[key] = @raw.send(key)
  end
  merge_attributes(raw_attributes)
end