1package webrtc
2
3// ICEParameters includes the ICE username fragment
4// and password and other ICE-related parameters.
5type ICEParameters struct {
6	UsernameFragment string `json:"usernameFragment"`
7	Password         string `json:"password"`
8	ICELite          bool   `json:"iceLite"`
9}
10