FinishAuthorizeResponse constructor

FinishAuthorizeResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. int? amount,
  8. String? orderId,
  9. String? paymentId,
  10. String? cardId,
  11. String? acsUrl,
  12. String? acsTransId,
  13. String? md,
  14. String? paReq,
  15. String? rebillId,
  16. bool? fallbackOnTdsV1,
  17. String? serverTransId,
})

Создает экземпляр ответа от сервера на подтверждение платежа

Implementation

FinishAuthorizeResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.amount,
  this.orderId,
  this.paymentId,
  this.cardId,
  this.acsUrl,
  this.acsTransId,
  this.md,
  this.paReq,
  this.rebillId,
  this.fallbackOnTdsV1,
  this.serverTransId,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );