AddCardResponse constructor

AddCardResponse({
  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. String? paymentURL,
  10. int? paymentId,
})

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

Implementation

AddCardResponse({
  Status? status,
  bool? success,
  String? errorCode,
  String? message,
  String? details,
  this.terminalKey,
  this.customerKey,
  this.requestKey,
  this.paymentURL,
  this.paymentId,
}) : super(
        status: status,
        success: success,
        errorCode: errorCode,
        message: message,
        details: details,
      );