aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/PatternValidation.md
blob: 98f79d8b78a1d7637efeaba3d090ef7a8d1501d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# PatternValidation


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **string** | Message to display if validation fails | [default to undefined]
**pattern** | **string** | Regex string to validate. min_length and max_length are checked separately, even if they are part of the regex. | [default to undefined]

## Example

```typescript
import { PatternValidation } from './api';

const instance: PatternValidation = {
    message,
    pattern,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)