RTCSessionDescriptionInit
RTCSessionDescriptionInit is a WebRTC initialization dictionary used to create or configure a session description. A session description represents the parameters exchanged during the negotiation of media streams between peers, typically encapsulated as SDP data.
The RTCSessionDescriptionInit dictionary contains two main properties: type and sdp. The type property is a string
This dictionary is used as an input when constructing an RTCSessionDescription, for example via new RTCSessionDescription(init),
Compatibility and details: RTCSessionDescriptionInit is part of the WebRTC specification and helps standardize how session descriptions
See also: RTCSessionDescription, RTCSdpType, and SDP in WebRTC negotiation.