AcquiringResponse constructor

AcquiringResponse({
  1. bool? success,
  2. Status? status,
  3. String? errorCode,
  4. String? message,
  5. String? details,
})

Базовый класс ответа Acquiring API

Implementation

AcquiringResponse({
  this.success,
  this.status,
  this.errorCode,
  this.message,
  this.details,
});