github.com/tada-team/tdproto@v1.51.57/jsep.go (about)

     1  package tdproto
     2  
     3  // JavaScript Session Establishment Protocol
     4  type JSEP struct {
     5  	// Session Description Protocol information
     6  	SDP string `json:"sdp"`
     7  	// See https://rtcweb-wg.github.io/jsep/#rfc.section.4.1.8
     8  	Type string `json:"type"`
     9  }