copyWith method
PaymentInitiationConsentPaymentExecuteResponse
copyWith({
- String? paymentId,
- PaymentInitiationPaymentStatus? status,
- String? requestId,
Implementation
PaymentInitiationConsentPaymentExecuteResponse copyWith(
{String? paymentId,
enums.PaymentInitiationPaymentStatus? status,
String? requestId}) {
return PaymentInitiationConsentPaymentExecuteResponse(
paymentId: paymentId ?? this.paymentId,
status: status ?? this.status,
requestId: requestId ?? this.requestId);
}