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

     1  package tdproto
     2  
     3  // Mute all other call participants
     4  type ClientCallMuteAll struct {
     5  	BaseEvent
     6  	Params clientCallMuteAllParams `json:"params"`
     7  }
     8  
     9  func (p ClientCallMuteAll) GetName() string { return "client.call.muteall" }
    10  
    11  // Params of the client.call.muteall event
    12  type clientCallMuteAllParams struct {
    13  	// Chat or contact id
    14  	Jid JID `json:"jid"`
    15  }