12 lines
215 B
Python
12 lines
215 B
Python
"""
|
|
Validation records request and response models.
|
|
"""
|
|
|
|
from typing import Optional
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ValidationsPydantic(BaseModel):
|
|
event_code: str
|
|
asked_field: Optional[str] = "all"
|