Source code for kittycad.models.rtc_session_description
from pydantic import BaseModel, ConfigDict
from ..models.rtc_sdp_type import RtcSdpType
[docs]
class RtcSessionDescription(BaseModel):
"""SessionDescription is used to expose local and remote session descriptions."""
sdp: str
type: RtcSdpType
model_config = ConfigDict(protected_namespaces=())