When the message of “Send Speech Recognition Command” is sent by encryption, need to set a decryption key to this property. Also, the decryption key needs to be that equals the encryption key.
- Type: string (Max size: 16byte)
 - Access type: read / write
 - Default value: blank
 
Remarks
Supported version: SDK 2.0.0 and Haruzira 2.0.0 later
Examples
C#
| 
					 1 2 3 4 5 6  | 
						ClientTcpCommunication cltComm = new ClientTcpCommunication(); //Get string key = cltComm.ReceivedDataDecryptionKey; //Set cltComm.ReceivedDataDecryptionKey= "test23key"  | 
					
Ruby
| 
					 1 2 3 4 5 6  | 
						cltComm = ClientTcpCommunication.new #Get key = cltComm.ReceivedDataDecryptionKey #Set cltComm.ReceivedDataDecryptionKey= "test23key"  | 
					
Python
| 
					 1 2 3 4 5 6  | 
						clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get key = clt_comm.ReceivedDataDecryptionKey #Set clt_comm.ReceivedDataDecryptionKey= "test23key"  | 
					
