class CloudParty::Responses::Node::Plan

Attributes

list[R]

Public Class Methods

new(hsh) click to toggle source
# File lib/cloud_party/responses/nodes/zones/plan.rb, line 7
def initialize(hsh)
  hsh.each do |name, value|
    instance_variable_set(:"@#{name}", value)
  end
end

Public Instance Methods

inspect() click to toggle source
# File lib/cloud_party/responses/nodes/zones/plan.rb, line 19
def inspect
  to_s
end
to_s() click to toggle source
# File lib/cloud_party/responses/nodes/zones/plan.rb, line 15
def to_s
  "#<Plan: #{list}>"
end