linkbreakers 1.81.4

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.81.4
 * 
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// WebhookSource : - WEBHOOK_SOURCE_UNSPECIFIED: Webhook source not specified (defaults to LINKBREAKERS)  - WEBHOOK_SOURCE_LINKBREAKERS: Webhook created manually through the Linkbreakers dashboard/platform  - WEBHOOK_SOURCE_MAKE: Webhook created automatically via Make.com integration  - WEBHOOK_SOURCE_ZAPIER: Webhook created automatically via Zapier integration
/// - WEBHOOK_SOURCE_UNSPECIFIED: Webhook source not specified (defaults to LINKBREAKERS)  - WEBHOOK_SOURCE_LINKBREAKERS: Webhook created manually through the Linkbreakers dashboard/platform  - WEBHOOK_SOURCE_MAKE: Webhook created automatically via Make.com integration  - WEBHOOK_SOURCE_ZAPIER: Webhook created automatically via Zapier integration
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum WebhookSource {
    #[serde(rename = "WEBHOOK_SOURCE_UNSPECIFIED")]
    WebhookSourceUnspecified,
    #[serde(rename = "WEBHOOK_SOURCE_LINKBREAKERS")]
    WebhookSourceLinkbreakers,
    #[serde(rename = "WEBHOOK_SOURCE_MAKE")]
    WebhookSourceMake,
    #[serde(rename = "WEBHOOK_SOURCE_ZAPIER")]
    WebhookSourceZapier,

}

impl std::fmt::Display for WebhookSource {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        match self {
            Self::WebhookSourceUnspecified => write!(f, "WEBHOOK_SOURCE_UNSPECIFIED"),
            Self::WebhookSourceLinkbreakers => write!(f, "WEBHOOK_SOURCE_LINKBREAKERS"),
            Self::WebhookSourceMake => write!(f, "WEBHOOK_SOURCE_MAKE"),
            Self::WebhookSourceZapier => write!(f, "WEBHOOK_SOURCE_ZAPIER"),
        }
    }
}

impl Default for WebhookSource {
    fn default() -> WebhookSource {
        Self::WebhookSourceUnspecified
    }
}