Class: Seahorse::Model::Shapes::Shape
- Inherits:
-
Object
- Object
- Seahorse::Model::Shapes::Shape
- Defined in:
- lib/seahorse/model/shapes.rb
Direct Known Subclasses
BlobShape, BooleanShape, FloatShape, IntegerShape, ListShape, MapShape, StringShape, StructureShape, TimestampShape
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#[](key) ⇒ Object
Gets metadata for the given ‘key`.
-
#[]=(key, value) ⇒ Object
Sets metadata for the given ‘key`.
-
#initialize ⇒ Shape
constructor
A new instance of Shape.
Constructor Details
#initialize ⇒ Shape
Returns a new instance of Shape.
72 73 74 |
# File 'lib/seahorse/model/shapes.rb', line 72 def initialize @metadata = {} end |
Instance Attribute Details
#documentation ⇒ String?
80 81 82 |
# File 'lib/seahorse/model/shapes.rb', line 80 def documentation @documentation end |
#name ⇒ String
77 78 79 |
# File 'lib/seahorse/model/shapes.rb', line 77 def name @name end |
Instance Method Details
#[](key) ⇒ Object
Gets metadata for the given ‘key`.
83 84 85 |
# File 'lib/seahorse/model/shapes.rb', line 83 def [](key) @metadata[key.to_s] end |
#[]=(key, value) ⇒ Object
Sets metadata for the given ‘key`.
88 89 90 |
# File 'lib/seahorse/model/shapes.rb', line 88 def []=(key, value) @metadata[key.to_s] = value end |