AddAccountQrResponse constructor

AddAccountQrResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. DataType? dataType,
  8. String? requestKey,
})

Создает экземпляр ответа от инициацию привязки счета покупателя к магазину в СБП и возвращает информацию о нём.

Implementation

AddAccountQrResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.dataType,
  this.requestKey,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );