15 lines
310 B
Python
15 lines
310 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.rtc_sdp_type import RtcSdpType
|
|
|
|
|
|
class RtcSessionDescription(BaseModel):
|
|
"""SessionDescription is used to expose local and remote session descriptions."""
|
|
|
|
sdp: str
|
|
|
|
type: RtcSdpType
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|