floria 0.0.5

Floria data system for cloud orchestration
Documentation
use super::super::data::*;

use kutil::std::immutable::*;

//
// EventHandler
//

/// Event handler.
///
/// Equivalent to TOSCA operation or notification.
#[derive(Clone, Debug)]
pub struct EventHandler {
    /// Event ID.
    pub event_id: ByteString,

    /// Call.
    pub call: Call,
}