feat: call transcripts apis
refactor: api response for list
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user