QueryInputApiDTO
Description
Model to describe an input query
Required Parameters
- query
-
-
type: string
-
description: Query string. The format of this depends on the QueryType chosen. For example, for a REGEX QueryType, this should be a regular expression.
-
- type
-
-
type: string
-
description: Query type
-
enum: ['EXACT', 'REGEX', 'CONTAINS']
-
Optional Parameters
- caseSensitive
-
-
type: boolean
-
description: If true, the query string will match case-sensitivity. This field is only used when QueryType is not REGEX.
-