feat: call transcripts apis

refactor: api response for list
This commit is contained in:
2025-05-14 15:38:31 +05:30
parent 2fc0c88ed8
commit b6e390f77c
9 changed files with 215 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
from sqlalchemy import Column, Integer, String
from database import Base
from .CustomBase import CustomBase
class CallTranscripts(Base, CustomBase):
__tablename__ = "call_transcripts"
id = Column(Integer, primary_key=True, index=True)
patient_name = Column(String)
patient_number = Column(String)
call_duration = Column(String)
call_received_time = Column(String)
transcript_key_id = Column(String)