GetOrderStatusExtendedResponse constructor

GetOrderStatusExtendedResponse({
  1. String? errorCode,
  2. String? errorMessage,
  3. String? orderNumber,
  4. OrderStatus? orderStatus,
  5. int? actionCode,
  6. String? actionCodeDescription,
  7. int? amount,
  8. String? currency,
  9. int? date,
  10. int? depositedDate,
  11. String? orderDescription,
  12. String? ip,
  13. String? authRefNum,
  14. String? refundedDate,
  15. PaymentWay? paymentWay,
  16. AvsCode? avsCode,
  17. List<Attribute>? merchantOrderParams,
  18. List<Attribute>? attributes,
  19. List<Attribute>? transactionAttributes,
  20. CardAuthInfo? cardAuthInfo,
  21. String? terminalId,
  22. PaymentAmountInfo? paymentAmountInfo,
  23. BankInfo? bankInfo,
  24. BindingInfo? bindingInfo,
  25. PayerData? payerData,
  26. Refunds? refunds,
})

Ответ состояния заказа

Implementation

GetOrderStatusExtendedResponse({
  String? errorCode,
  String? errorMessage,
  this.orderNumber,
  this.orderStatus,
  this.actionCode,
  this.actionCodeDescription,
  this.amount,
  this.currency,
  this.date,
  this.depositedDate,
  this.orderDescription,
  this.ip,
  this.authRefNum,
  this.refundedDate,
  this.paymentWay,
  this.avsCode,
  this.merchantOrderParams,
  this.attributes,
  this.transactionAttributes,
  this.cardAuthInfo,
  this.terminalId,
  this.paymentAmountInfo,
  this.bankInfo,
  this.bindingInfo,
  this.payerData,
  this.refunds,
}) : super(
        errorCode: errorCode,
        errorMessage: errorMessage,
      );