OrderStatusInfo constructor

OrderStatusInfo({
  1. int? errorCode,
  2. String? orderNumber,
  3. OrderStatus? orderStatus,
  4. int? actionCode,
  5. String? actionCodeDescription,
  6. int? amount,
  7. int? currency,
  8. String? date,
  9. List<Attribute>? merchantOrderParams,
  10. List<Attribute>? attributes,
  11. CardAuthInfo? cardAuthInfo,
  12. String? terminalId,
  13. String? authDateTime,
  14. String? authRefNum,
  15. PaymentAmountInfo? paymentAmountInfo,
  16. BankInfo? bankInfo,
})

Статус заказа

Implementation

OrderStatusInfo({
  this.errorCode,
  this.orderNumber,
  this.orderStatus,
  this.actionCode,
  this.actionCodeDescription,
  this.amount,
  this.currency,
  this.date,
  this.merchantOrderParams,
  this.attributes,
  this.cardAuthInfo,
  this.terminalId,
  this.authDateTime,
  this.authRefNum,
  this.paymentAmountInfo,
  this.bankInfo,
});