class Seahorse::Model::Shapes::String

def initialize(definition, options = {})

def initialize(definition, options = {})
  super
  @enum = Set.new(definition['enum']) if definition['enum']
  @pattern = definition['pattern']
  @min = definition['min']
  @max = definition['max']
end