アカウント認証時に使用するパスワードを設定・取得する。
- Type: string
- Access type: read / write
- Default value: blank
Examples
C#
1 2 3 4 5 6 |
ClientTcpCommunication cltComm = new ClientTcpCommunication(); #Get string passwd = cltComm.ReqSendDataPasswd; //Set cltComm.ReqSendDataPasswd = "passwd12345678"; |
Ruby
1 2 3 4 5 6 |
cltComm = ClientTcpCommunication.new #Get passwd = cltComm.ReqSendDataPasswd #Set cltComm.ReqSendDataPasswd = "passwd12345678" |
Python
1 2 3 4 5 6 |
clt_comm = hz_client_tcp_communication.ClientTcpCommunication() #Get passwd = clt_comm.ReqSendDataPasswd #Set clt_comm.ReqSendDataPasswd = "passwd12345678" |