copyWithWrapped method

Implementation

PaymentInitiationPaymentCreateResponse copyWithWrapped(
    {Wrapped<String>? paymentId,
    Wrapped<enums.PaymentInitiationPaymentCreateStatus>? status,
    Wrapped<String>? requestId}) {
  return PaymentInitiationPaymentCreateResponse(
      paymentId: (paymentId != null ? paymentId.value : this.paymentId),
      status: (status != null ? status.value : this.status),
      requestId: (requestId != null ? requestId.value : this.requestId));
}