Object passed in to OnTipAdjustAuthResponse
Inheritance: BaseResponse
 public void OnTipAdjustAuthResponse(TipAdjustAuthResponse response)
 {
     throw new NotImplementedException();
 }
Exemple #2
0
 public virtual void OnTipAdjustAuthResponse(TipAdjustAuthResponse response)
 {
 }
 public void OnTipAdjustAuthResponse(TipAdjustAuthResponse response)
 {
     Send("/TipAdjustAuthResponse", Serialize(response));
 }
 public void OnTipAdjustAuthResponse(TipAdjustAuthResponse response)
 {
     if (response.Success)
     {
         POSOrder order = Store.GetOrder(response.PaymentId);
         order.ModifyTipAmount(response.PaymentId, response.TipAmount);
     }
     else
     {
         uiThread.Send(delegate (object state) {
             AlertForm.Show(this, response.Reason, response.Message);
         }, null);
     }
 }
 public void OnTipAdjustAuthResponse(TipAdjustAuthResponse response)
 {
 }
 public void OnTipAdjustAuthResponse(TipAdjustAuthResponse response)
 {
     OnTipAdjustAuthResponseMessage tipAdjustResponse = new OnTipAdjustAuthResponseMessage();
     tipAdjustResponse.payload = response;
     WebSocket.Send(Serialize(tipAdjustResponse));
 }