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

     1  package tdproto
     2  
     3  // Change mute state in call
     4  type ClientCallSound struct {
     5  	BaseEvent
     6  	Params clientCallSoundParams `json:"params"`
     7  }
     8  
     9  func (p ClientCallSound) GetName() string { return "client.call.sound" }
    10  
    11  // Params of the client.call.sound event
    12  type clientCallSoundParams struct {
    13  	// Chat or contact id
    14  	Jid JID `json:"jid"`
    15  
    16  	// Mute state
    17  	Muted bool `json:"muted"`
    18  }