/*
* task-automation API
*
* task-automation engine to automate and customize web based integration processes
*
* The version of the OpenAPI document: 3.63.10
* Contact: support@babelforce.com
* Generated by: https://openapi-generator.tech
*/
use crate::gen::task_automation::models;
use serde::{Deserialize, Serialize};
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum AgentLocking {
#[serde(rename = "unlock")]
Unlock,
}
impl std::fmt::Display for AgentLocking {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Unlock => write!(f, "unlock"),
}
}
}
impl Default for AgentLocking {
fn default() -> AgentLocking {
Self::Unlock
}
}