# `Maru.Params.Types.String`

Buildin Type: String

## Parser Arguments
    * `:style` - string style
      * `:upcase`
      * `:downcase`
      * `:camelcase`
      * `:snakecase`
    * `:trim` - to_trim

## Validator Arguments
    * `:regex` - validate input by regex
    * `:values` - validate input is one item of given values

## Examples
  optional :id, String, regex: ~r/{7,10}/
  optional :fruit, String, values: ["apple", "peach"]
  optional :code, String, style: :upcase

# `parse`

# `parser_arguments`

# `validate`

# `validator_arguments`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
