github.com/puellanivis/breton@v0.2.16/lib/net/hls/m3u8/sessiondata.go (about)

     1  package m3u8
     2  
     3  // SessionData implements the SESSION directive of the m3u8 standard.
     4  type SessionData struct {
     5  	DataID   string `m3u8:"DATA-ID"`
     6  	Value    string `m3u8:"VALUE,optional"`
     7  	URI      string `m3u8:"URI,optional"`
     8  	Language string `m3u8:"LANGUAGE,optional"`
     9  }