File size: 273 Bytes
112f52b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from datetime import datetime
from typing import List, Optional
from uuid import uuid4

from pydantic import BaseModel, Field

class StockNameModel(BaseModel):
    name: str = Field(..., min_length=3, max_length=50)
    ticker: str = Field(..., min_length=3, max_length=50)