Class: Vapi::RegexOptionType
- Inherits:
-
Object
- Object
- Vapi::RegexOptionType
- Defined in:
- lib/vapi_server_sdk/types/regex_option_type.rb
Overview
This is the type of the regex option. Options are:
- `ignore-case`: Ignores the case of the text being matched.
- `whole-word`: Matches whole words only.
- `multi-line`: Matches across multiple lines.
Constant Summary collapse
- IGNORE_CASE =
"ignore-case"
- WHOLE_WORD =
"whole-word"
- MULTI_LINE =
"multi-line"