File size: 674 Bytes
07fbc67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from pydantic import BaseModel, EmailStr
from datetime import datetime
from bson import ObjectId
from typing import Optional, List

class UserBase(BaseModel):
    username: str
    phone_number: str
    email: EmailStr

class UserCreate(UserBase):
    credits: float = 0.0
    remaining_credits: float = 0.0
    payment_status: bool = False

class UserResponse(UserBase):
    id: str
    credits: float
    remaining_credits: float
    payment_status: bool

    class Config:
        orm_mode = True

class TransactionResponse(BaseModel):
    id: str
    user_id: str
    amount: float
    description: str
    timestamp: datetime

    class Config:
        orm_mode = True