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
/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// WorkflowEdge : A directed edge between two nodes.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WorkflowEdge {
#[serde(rename = "id")]
pub id: String,
/// Source node id
#[serde(rename = "source")]
pub source: String,
/// Target node id
#[serde(rename = "target")]
pub target: String,
/// Selects a branch output of a multi-output node: a condition rule id or 'default'; 'reply' or 'timeout' for wait_for_reply; 'success' or 'error' for webhook. Null = the node's single/default output.
#[serde(rename = "sourceHandle", skip_serializing_if = "Option::is_none")]
pub source_handle: Option<String>,
}
impl WorkflowEdge {
/// A directed edge between two nodes.
pub fn new(id: String, source: String, target: String) -> WorkflowEdge {
WorkflowEdge {
id,
source,
target,
source_handle: None,
}
}
}