svix 2.0.0

Svix webhooks API client and webhook verification library
Documentation
// this file is @generated
#[allow(unused_imports)]
use js_option::JsOption;
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
pub struct OtelTracingConfigPatch {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub url: Option<String>,
}

impl OtelTracingConfigPatch {
    pub fn new() -> Self {
        Self { url: None }
    }
}

impl Default for OtelTracingConfigPatch {
    fn default() -> Self {
        Self::new()
    }
}