Physical Payment (Sync/Async)
Callbacks for payments initiated through the Paywall Physical POS service are delivered as follows:
Key
Description
public class PhysicalPosCallbackModel
{
public Guid ConnectionId { get; set; }
public Guid TerminalId { get; set; }
public Guid PaymentRequestId { get; set; }
public Guid PaymentRequestActivityId { get; set; }
public PaymentType PaymentTypeId { get; set; }
public PaymentStatus PaymentStatusId { get; set; }
public Guid MerchantUniqueCode { get; set; }
public string DisplayCode { get; set; }
public decimal Amount { get; set; }
public string Message { get; set; }
public string Hash { get; set; }
}Last updated