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

#initializeShape

Returns a new instance of Shape.



60
61
62
# File 'lib/seahorse/model/shapes.rb', line 60

def initialize
  @metadata = {}
end

Instance Attribute Details

#documentationString?

Returns:

  • (String, nil)


68
69
70
# File 'lib/seahorse/model/shapes.rb', line 68

def documentation
  @documentation
end

#nameString

Returns:

  • (String)


65
66
67
# File 'lib/seahorse/model/shapes.rb', line 65

def name
  @name
end

Instance Method Details

#[](key) ⇒ Object

Gets metadata for the given ‘key`.



71
72
73
# File 'lib/seahorse/model/shapes.rb', line 71

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

#[]=(key, value) ⇒ Object

Sets metadata for the given ‘key`.



76
77
78
# File 'lib/seahorse/model/shapes.rb', line 76

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