copyWithWrapped method
Implementation
WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest
copyWithWrapped(
{Wrapped<String>? activeLinkToken,
Wrapped<String>? account,
Wrapped<String>? expirationDate,
Wrapped<bool>? capture}) {
return WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest(
activeLinkToken: (activeLinkToken != null
? activeLinkToken.value
: this.activeLinkToken),
account: (account != null ? account.value : this.account),
expirationDate: (expirationDate != null
? expirationDate.value
: this.expirationDate),
capture: (capture != null ? capture.value : this.capture));
}