babelforce-manager-sdk 0.42.3

Rust SDK for the babelforce manager APIs — auth, user & agent management, call reporting, metrics, and task automations.
Documentation
/*
 * 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};

/// SessionResponseItem : The call session.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SessionResponseItem {
    /// The call session's uuid.
    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
    pub id: Option<uuid::Uuid>,
    /// Whether the session is still valid (not expired).
    #[serde(rename = "valid", skip_serializing_if = "Option::is_none")]
    pub valid: Option<bool>,
    /// When the session was created
    #[serde(rename = "created", skip_serializing_if = "Option::is_none")]
    pub created: Option<f64>,
    /// When the session was last accessed
    #[serde(rename = "last_access", skip_serializing_if = "Option::is_none")]
    pub last_access: Option<f64>,
    /// Property containing session variables as key-value pairs
    #[serde(rename = "data", skip_serializing_if = "Option::is_none")]
    pub data: Option<serde_json::Value>,
}

impl SessionResponseItem {
    /// The call session.
    pub fn new() -> SessionResponseItem {
        SessionResponseItem {
            id: None,
            valid: None,
            created: None,
            last_access: None,
            data: None,
        }
    }
}