copyWithWrapped method

WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest copyWithWrapped({
  1. Wrapped<String>? activeLinkToken,
  2. Wrapped<String>? account,
  3. Wrapped<String>? expirationDate,
  4. Wrapped<bool>? capture,
  5. Wrapped<String>? countryId,
})

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));
}