hanzo_client/models/bot_member.rs
1/*
2 * Hanzo Cloud API
3 *
4 * The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
5 *
6 * The version of the OpenAPI document: v1
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct BotMember {
16 /// Active is whether the agent projects as a LIVE workspace member, derived from its registry status: empty, \"active\" and \"ready\" are live, anything else (archived/retired) is not. An inactive bot drops out of the Team list while its past authorship survives.
17 #[serde(rename = "active", skip_serializing_if = "Option::is_none")]
18 pub active: Option<bool>,
19 /// the agent id
20 #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
21 pub id: Option<String>,
22 /// display name
23 #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
24 pub name: Option<String>,
25 /// the projected Person _id
26 #[serde(rename = "personRef", skip_serializing_if = "Option::is_none")]
27 pub person_ref: Option<String>,
28 /// derived member account uuid (personUuid)
29 #[serde(rename = "userId", skip_serializing_if = "Option::is_none")]
30 pub user_id: Option<String>,
31}
32
33impl BotMember {
34 pub fn new() -> BotMember {
35 BotMember {
36 active: None,
37 id: None,
38 name: None,
39 person_ref: None,
40 user_id: None,
41 }
42 }
43}
44