AttachCardResponse constructor

AttachCardResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. String? customerKey,
  8. String? requestKey,
  9. int? rebillId,
  10. String? cardId,
  11. String? acsUrl,
  12. String? md,
  13. String? paReq,
})

Создает экземпляр ответа от сервера по завершению привязки карты к покупателю

Implementation

AttachCardResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.customerKey,
  this.requestKey,
  this.rebillId,
  this.cardId,
  this.acsUrl,
  this.md,
  this.paReq,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );