- Added subscription_service.py for managing subscriptions with functions to create, read, update, and delete subscriptions. - Added tenant_service.py for managing tenants with functions to create, read, update, delete tenants, and assign users to tenants. - Added user_service.py for managing users with functions to create, read, update, and delete users. - Created tests for business types, plans, subscriptions, tenants, and users, ensuring proper functionality and error handling. - Implemented pagination in user listing and included user profiles in responses. - Established fixtures for database setup and teardown in tests.
35 lines
653 B
Python
35 lines
653 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class PlanCreate(BaseModel):
|
|
code: str
|
|
name: str
|
|
description: str | None = None
|
|
price: int
|
|
limits: dict | None = None
|
|
|
|
|
|
class PlanUpdate(BaseModel):
|
|
code: str | None = None
|
|
name: str | None = None
|
|
description: str | None = None
|
|
price: int | None = None
|
|
limits: dict | None = None
|
|
is_active: bool | None = None
|
|
|
|
|
|
class PlanResponse(BaseModel):
|
|
id: str
|
|
code: str
|
|
name: str
|
|
description: str | None
|
|
price: int
|
|
limits: dict | None
|
|
is_active: bool
|
|
created_at: datetime
|
|
|
|
class Config:
|
|
from_attributes = True
|