/*
* enbbox API
*
* Notification infrastructure API — open-source alternative to Novu/Courier
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// UpdateChannelConnection : Partial update of a channel connection.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateChannelConnection {
#[serde(rename = "credentials")]
pub credentials: serde_json::Value,
}
impl UpdateChannelConnection {
/// Partial update of a channel connection.
pub fn new(credentials: serde_json::Value) -> UpdateChannelConnection {
UpdateChannelConnection {
credentials,
}
}
}