/*
* Manager API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0-dev
* Contact: support@babelforce.com
* Generated by: https://openapi-generator.tech
*/
use crate::gen::manager::models;
use serde::{Deserialize, Serialize};
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum EndCallRequestAction {
#[serde(rename = "hangup")]
Hangup,
}
impl std::fmt::Display for EndCallRequestAction {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Hangup => write!(f, "hangup"),
}
}
}
impl Default for EndCallRequestAction {
fn default() -> EndCallRequestAction {
Self::Hangup
}
}