copyWithWrapped method
      
CreateWebhookSubscriptionRequest
copyWithWrapped({ 
    
    
- Wrapped<String> ? callbackUrl,
- Wrapped<String> ? verificationToken,
- Wrapped<WebhookOperation> ? eventType,
- Wrapped<ExtApiV2DataType> ? dataType,
Implementation
CreateWebhookSubscriptionRequest copyWithWrapped(
    {Wrapped<String>? callbackUrl,
    Wrapped<String>? verificationToken,
    Wrapped<enums.WebhookOperation>? eventType,
    Wrapped<enums.ExtApiV2DataType>? dataType}) {
  return CreateWebhookSubscriptionRequest(
      callbackUrl:
          (callbackUrl != null ? callbackUrl.value : this.callbackUrl),
      verificationToken: (verificationToken != null
          ? verificationToken.value
          : this.verificationToken),
      eventType: (eventType != null ? eventType.value : this.eventType),
      dataType: (dataType != null ? dataType.value : this.dataType));
}