10 lines
209 B
Python
10 lines
209 B
Python
from typing import Optional
|
|
from pydantic.main import BaseModel
|
|
|
|
|
|
class ProcessDocumentSchema(BaseModel):
|
|
id: str = None
|
|
texto: Optional[bytes] = None
|
|
|
|
class Config:
|
|
from_attributes = True
|