@return [String, nil]
@return [String]
# File lib/seahorse/model/shapes.rb, line 72 def initialize @metadata = {} end
Gets metadata for the given `key`.
# File lib/seahorse/model/shapes.rb, line 83 def [](key) @metadata[key.to_s] end
Sets metadata for the given `key`.
# File lib/seahorse/model/shapes.rb, line 88 def []=(key, value) @metadata[key.to_s] = value end