/*
* 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, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum IntegrationAvailable {
IntegrationAvailableLegacy(Box<models::IntegrationAvailableLegacy>),
IntegrationAvailableCustom(Box<models::IntegrationAvailableCustom>),
}
impl Default for IntegrationAvailable {
fn default() -> Self {
Self::IntegrationAvailableLegacy(Default::default())
}
}