Receipt constructor

Receipt({
  1. ReceiptStatus? receiptStatus,
  2. String? uuid,
  3. String? originalOfdUuid,
  4. int? shiftNumber,
  5. int? fiscalReceiptNumber,
  6. String? receiptDatetime,
  7. String? fnNumber,
  8. String? ecrRegistrationNumber,
  9. int? fiscalDocumentNumber,
  10. String? fiscalDocumentAttribute,
  11. String? amountTotal,
  12. String? serialNumber,
  13. String? fnsSite,
  14. String? ofdReceiptUrl,
  15. OFD? ofd,
})

Блок с параметрами чека.

Implementation

Receipt({
  this.receiptStatus,
  this.uuid,
  this.originalOfdUuid,
  this.shiftNumber,
  this.fiscalReceiptNumber,
  this.receiptDatetime,
  this.fnNumber,
  this.ecrRegistrationNumber,
  this.fiscalDocumentNumber,
  this.fiscalDocumentAttribute,
  this.amountTotal,
  this.serialNumber,
  this.fnsSite,
  this.ofdReceiptUrl,
  this.ofd,
});