nikeee / TeamSpeak3QueryApi

.NET wrapper for the TeamSpeak 3 Query API
https://nikeee.github.io/TeamSpeak3QueryAPI
GNU General Public License v3.0
60 stars 16 forks source link

Get RequestedTalkPower of Client #68

Closed Parilar closed 4 years ago

Parilar commented 4 years ago

Hello, is there any way to get the parameters RequestedTalkPower and TalkPowerRequestMessage without the ClientEnterView Event ? Its missing in GetClientDetailedInfo.

Parilar commented 4 years ago

Solved by adding the following to GetClientDetailedInfo class

       [QuerySerialize("client_talk_request")]
        public int RequestedTalkPower;

        [QuerySerialize("client_talk_request_msg")]
        public string TalkPowerRequestMessage;