/*
* 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. Null (or omitted) = the node's single/default output. Known handles per node type: - **condition** — a rule's `id`, or `'default'` (no rule matched) - **wait_for_reply** — `'reply'` (contact replied) | `'timeout'` (no reply in window) - **webhook** — `'success'` (2xx) | `'error'` (non-2xx / fetch failed) - **ai** — `'success'` (text/JSON response) | `'tool:<toolName>'` (model invoked that tool) | `'error'` (upstream failure / non-JSON in JSON mode) - **start_call** — `'success'` | `'permission_required'` | `'failed'` - **a_b_split** — `'a'` | `'b'` - **enroll_sequence** — `'success'` | `'error'`
#[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,
}
}
}