pychatbot / request /RequestOTP.py
kltn20133118's picture
Upload 48 files
6b725f7 verified
raw
history blame
211 Bytes
from pydantic import BaseModel
from typing import Optional
class RequestCreateOTP(BaseModel):
email: Optional[str]
class RequestVerifyOTP(BaseModel):
email: Optional[str]
otp: Optional[str]