14 lines
		
	
	
		
			250 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			250 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from datetime import datetime
 | 
						|
 | 
						|
from schemas.base import CommonModel
 | 
						|
 | 
						|
 | 
						|
class BalanceTransaction(CommonModel):
 | 
						|
    id: int
 | 
						|
    type: int
 | 
						|
    user_id: int
 | 
						|
    amount: float
 | 
						|
    description: str
 | 
						|
    json_data: dict | None = None
 | 
						|
    created_at: datetime
 |