copyWithWrapped method
Implementation
WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest
copyWithWrapped(
{Wrapped<String>? activeLinkToken,
Wrapped<String>? account,
Wrapped<String>? expirationDate,
Wrapped<bool>? capture,
Wrapped<String>? countryId}) {
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),
countryId: (countryId != null ? countryId.value : this.countryId));
}