GetReceiptStatusResponse constructor

GetReceiptStatusResponse({
  1. String? errorCode,
  2. String? errorMessage,
  3. String? orderNumber,
  4. String? orderId,
  5. String? daemonCode,
  6. String? ecrRegistrationNumber,
  7. Receipt? receipt,
})

Ответ сведений о кассовом чеке.

Implementation

GetReceiptStatusResponse({
  String? errorCode,
  String? errorMessage,
  this.orderNumber,
  this.orderId,
  this.daemonCode,
  this.ecrRegistrationNumber,
  this.receipt,
}) : super(
        errorCode: errorCode,
        errorMessage: errorMessage,
      );