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