GetAddCardStateResponse constructor

GetAddCardStateResponse({
  1. Status? status,
  2. bool? success,
  3. String? errorCode,
  4. String? message,
  5. String? details,
  6. String? terminalKey,
  7. String? requestKey,
  8. String? customerKey,
  9. String? cardId,
  10. String? rebillId,
})

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

Implementation

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