1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.98.0
*
* 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
}
}