babelforce-manager-sdk 0.42.1

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

/// UserAccount : A Company User Account
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UserAccount {
    /// The unique Identifier (UUID) of the object
    #[serde(rename = "id")]
    pub id: uuid::Uuid,
    /// The Name of the Company associated with that User
    #[serde(rename = "company")]
    pub company: String,
}

impl UserAccount {
    /// A Company User Account
    pub fn new(id: uuid::Uuid, company: String) -> UserAccount {
        UserAccount { id, company }
    }
}