blob: d2e7ec10d5daaa304f074f593a6691b9f59de566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# ValidationError
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**loc** | [**Array<ValidationErrorLocInner>**](ValidationErrorLocInner.md) | | [default to undefined]
**msg** | **string** | | [default to undefined]
**type** | **string** | | [default to undefined]
## Example
```typescript
import { ValidationError } from './api';
const instance: ValidationError = {
loc,
msg,
type,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|