We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d9eff7 commit 75ca9feCopy full SHA for 75ca9fe
src/basalam_sdk/search/models.py
@@ -1,23 +1,11 @@
1
"""
2
Models for the Search service API.
3
4
-from typing import List, Optional, Union
+from typing import Optional
5
6
from pydantic import BaseModel
7
8
9
-class ValidationError(BaseModel):
10
- """Validation error model."""
11
- loc: List[Union[str, int]]
12
- msg: str
13
- type: str
14
-
15
16
-class HTTPValidationError(BaseModel):
17
- """HTTP validation error model."""
18
- detail: List[ValidationError]
19
20
21
class FiltersModel(BaseModel):
22
"""Filters model for product search."""
23
freeShipping: Optional[int] = None
0 commit comments