/*
* 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};
/// 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 }
}
}