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
46
47
48
/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.51.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// WorkflowStepKind : - KIND_UNSPECIFIED: Workflow step kind not specified - KIND_ENTRY: Entry steps are automatically triggered when a visitor reaches the workflow - KIND_EXIT: Exit steps finalize the workflow (commonly a redirect) - KIND_INTERACTION: Interaction steps require visitor input (forms, passwords, etc.) - KIND_CONDITION: Condition steps evaluate logic and route to different next steps
/// - KIND_UNSPECIFIED: Workflow step kind not specified - KIND_ENTRY: Entry steps are automatically triggered when a visitor reaches the workflow - KIND_EXIT: Exit steps finalize the workflow (commonly a redirect) - KIND_INTERACTION: Interaction steps require visitor input (forms, passwords, etc.) - KIND_CONDITION: Condition steps evaluate logic and route to different next steps
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum WorkflowStepKind {
#[serde(rename = "KIND_UNSPECIFIED")]
KindUnspecified,
#[serde(rename = "KIND_ENTRY")]
KindEntry,
#[serde(rename = "KIND_EXIT")]
KindExit,
#[serde(rename = "KIND_INTERACTION")]
KindInteraction,
#[serde(rename = "KIND_CONDITION")]
KindCondition,
}
impl std::fmt::Display for WorkflowStepKind {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::KindUnspecified => write!(f, "KIND_UNSPECIFIED"),
Self::KindEntry => write!(f, "KIND_ENTRY"),
Self::KindExit => write!(f, "KIND_EXIT"),
Self::KindInteraction => write!(f, "KIND_INTERACTION"),
Self::KindCondition => write!(f, "KIND_CONDITION"),
}
}
}
impl Default for WorkflowStepKind {
fn default() -> WorkflowStepKind {
Self::KindUnspecified
}
}