PosSessionUpdateRequest<TransactionObject, RefundObject> constructor

PosSessionUpdateRequest<TransactionObject, RefundObject>({
  1. required String sessionId,
  2. String? businessId,
  3. PosPaymentEventStatus? eventStatus,
  4. List<String>? logs,
  5. TransactionObject? transaction,
  6. RefundObject? refund,
})

Implementation

PosSessionUpdateRequest({
  required this.sessionId,
  this.businessId,
  this.eventStatus,
  this.logs,
  this.transaction,
  this.refund,
});