late 0.0.297

API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
Documentation
/*
 * 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};

/// WebhookPayloadCallFailed : Webhook payload for the `call.failed` event. Fired when a call setup or in-progress call fails.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct WebhookPayloadCallFailed {
    #[serde(rename = "id")]
    pub id: String,
    #[serde(rename = "event")]
    pub event: Event,
    #[serde(rename = "call")]
    pub call: Box<models::WebhookPayloadCallFailedCall>,
    #[serde(rename = "account")]
    pub account: Box<models::InboxWebhookAccount>,
    #[serde(rename = "timestamp")]
    pub timestamp: String,
}

impl WebhookPayloadCallFailed {
    /// Webhook payload for the `call.failed` event. Fired when a call setup or in-progress call fails.
    pub fn new(
        id: String,
        event: Event,
        call: models::WebhookPayloadCallFailedCall,
        account: models::InboxWebhookAccount,
        timestamp: String,
    ) -> WebhookPayloadCallFailed {
        WebhookPayloadCallFailed {
            id,
            event,
            call: Box::new(call),
            account: Box::new(account),
            timestamp,
        }
    }
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Event {
    #[serde(rename = "call.failed")]
    CallFailed,
}

impl Default for Event {
    fn default() -> Event {
        Self::CallFailed
    }
}