InvoiceClearanceResponse constructor

InvoiceClearanceResponse({
  1. ValidationResults? validationResults,
  2. ClearanceData? clearanceData,
  3. String? clearanceStatus,
  4. ServerErrorResponse? serverErrorResponse,
  5. UnauthorizedResponse? unauthorizedResponse,
  6. String? clearedInvoice,
  7. String? base64EncodedQrCode,
  8. String? fileName,
  9. required InvoiceClearanceResponseStatus status,
  10. required int statusCode,
})

Constructs an InvoiceClearanceResponse instance.

Implementation

InvoiceClearanceResponse({
  this.validationResults,
  this.clearanceData,
  this.clearanceStatus,
  this.serverErrorResponse,
  this.unauthorizedResponse,
  this.clearedInvoice,
  this.base64EncodedQrCode,
  this.fileName,
  required this.status,
  required this.statusCode,
});