from pydantic import BaseModel
from typing import Optional, Dict, Any, List


class RetellInboundWebhook(BaseModel):
    event: str
    call_inbound: Dict[str, Any]

class RetellWebhookResponse(BaseModel):
    call_inbound: Dict[str, Any]



