Exemple #1
0
        public void OnRefundPaymentResponse(RefundPaymentResponse response)
        {
            OnRefundPaymentResponseMessage message = new OnRefundPaymentResponseMessage();

            message.payload = response;
            WebSocket.Send(JsonUtils.serialize(message));
        }
Exemple #2
0
        public void OnRefundPaymentResponse(RefundPaymentResponse response)
        {
            OnRefundPaymentResponseMessage refundPaymentResponse = new OnRefundPaymentResponseMessage();

            refundPaymentResponse.payload = response;
            WebSocket.Send(Serialize(refundPaymentResponse));
        }
 public void OnRefundPaymentResponse(RefundPaymentResponse response)
 {
     OnRefundPaymentResponseMessage refundPaymentResponse = new OnRefundPaymentResponseMessage();
     refundPaymentResponse.payload = response;
     WebSocket.Send(Serialize(refundPaymentResponse));
 }