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.43.5
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// WebhookStatus : - WEBHOOK_STATUS_UNSPECIFIED: Webhook status not specified - WEBHOOK_STATUS_ACTIVE: Webhook is active and receiving events - WEBHOOK_STATUS_DISABLED: Webhook is disabled due to repeated failures - WEBHOOK_STATUS_PAUSED: Webhook is paused by user action
/// - WEBHOOK_STATUS_UNSPECIFIED: Webhook status not specified - WEBHOOK_STATUS_ACTIVE: Webhook is active and receiving events - WEBHOOK_STATUS_DISABLED: Webhook is disabled due to repeated failures - WEBHOOK_STATUS_PAUSED: Webhook is paused by user action
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum WebhookStatus {
#[serde(rename = "WEBHOOK_STATUS_UNSPECIFIED")]
WebhookStatusUnspecified,
#[serde(rename = "WEBHOOK_STATUS_ACTIVE")]
WebhookStatusActive,
#[serde(rename = "WEBHOOK_STATUS_DISABLED")]
WebhookStatusDisabled,
#[serde(rename = "WEBHOOK_STATUS_PAUSED")]
WebhookStatusPaused,
}
impl std::fmt::Display for WebhookStatus {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::WebhookStatusUnspecified => write!(f, "WEBHOOK_STATUS_UNSPECIFIED"),
Self::WebhookStatusActive => write!(f, "WEBHOOK_STATUS_ACTIVE"),
Self::WebhookStatusDisabled => write!(f, "WEBHOOK_STATUS_DISABLED"),
Self::WebhookStatusPaused => write!(f, "WEBHOOK_STATUS_PAUSED"),
}
}
}
impl Default for WebhookStatus {
fn default() -> WebhookStatus {
Self::WebhookStatusUnspecified
}
}