pychatbot / request /RequestOTP.py
kltn20133118's picture
Upload 203 files
f7b9e98 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]