svix 1.91.1

Svix webhooks API client and webhook verification library
Documentation
// this file is @generated
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Default, PartialEq, Deserialize, Serialize)]
pub struct IntegrationUpdate {
    /// The set of feature flags the integration will have access to.
    #[serde(rename = "featureFlags")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub feature_flags: Option<Vec<String>>,

    pub name: String,
}

impl IntegrationUpdate {
    pub fn new(name: String) -> Self {
        Self {
            feature_flags: None,
            name,
        }
    }
}