Class: Seahorse::Model::Shapes::Shape

Inherits:
Object
  • Object
show all
Defined in:
lib/seahorse/model/shapes.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Shape

Returns a new instance of Shape.



98
99
100
101
102
103
104
105
106
107
# File 'lib/seahorse/model/shapes.rb', line 98

def initialize(options = {})
  @metadata = {}
  options.each_pair do |key, value|
    if respond_to?("#{key}=")
      send("#{key}=", value)
    else
      self[key] = value
    end
  end
end

Instance Attribute Details

#documentationString?

Returns:

  • (String, nil)


113
114
115
# File 'lib/seahorse/model/shapes.rb', line 113

def documentation
  @documentation
end

#nameString

Returns:

  • (String)


110
111
112
# File 'lib/seahorse/model/shapes.rb', line 110

def name
  @name
end

Instance Method Details

#[](key) ⇒ Object

Gets metadata for the given ‘key`.



116
117
118
# File 'lib/seahorse/model/shapes.rb', line 116

def [](key)
  @metadata[key.to_s]
end

#[]=(key, value) ⇒ Object

Sets metadata for the given ‘key`.



121
122
123
# File 'lib/seahorse/model/shapes.rb', line 121

def []=(key, value)
  @metadata[key.to_s] = value
end