/*
* Hanzo Cloud API
*
* 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/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TeamRoom {
/// Archived reports that the room has been closed. It is the platform's own Space attribute — the same one the Team client writes — and NOT a field of the work facet, so there is exactly one answer to \"is this room open\".
#[serde(rename = "archived", skip_serializing_if = "Option::is_none")]
pub archived: Option<bool>,
/// Bindings are what this room is ABOUT, each a \"<kind>:<ref>\" string — \"project:acme/web\", \"repo:hanzoai/cloud\", \"issue:1010\". One list rather than one field per kind, because the next thing a room can be about should not be a schema change; and a bound value is opaque here on purpose, since the app that owns a project is the app that can resolve one. HIP-0523 §2: a binding is a REFERENCE, never a copy — a room holding an issue's title or status would be the parallel work-item store HIP-1160 §1 forbids.
#[serde(rename = "bindings", skip_serializing_if = "Option::is_none")]
pub bindings: Option<Vec<String>>,
/// Direct reports that this is a room between people rather than a named room. It is derived from the document's class, so it cannot disagree with what the client will render.
#[serde(rename = "direct", skip_serializing_if = "Option::is_none")]
pub direct: Option<bool>,
/// ID is the room document's own id, and the value the bind op addresses. It is unique within a workspace, not across the org.
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
/// Life is the room's lifecycle INTENT — \"standing\" or \"bound\" (HIP-0523 §2). Absent on the document it reads \"standing\": a room nobody classified is one that persists.
#[serde(rename = "life", skip_serializing_if = "Option::is_none")]
pub life: Option<String>,
/// Members are the account uuids in the room, agents included: an agent projects as a workspace member under a uuid derived from its id, so a caller comparing this against GET /v1/team/bots learns which rooms an agent is in.
#[serde(rename = "members", skip_serializing_if = "Option::is_none")]
pub members: Option<Vec<String>>,
/// Name is what a person sees in a sidebar. A direct message carries none, so this is empty for one — the members are its name.
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// Private reports that the room is restricted to its members.
#[serde(rename = "private", skip_serializing_if = "Option::is_none")]
pub private: Option<bool>,
/// Topic is the room's own one-line subject, as the Team client sets it.
#[serde(rename = "topic", skip_serializing_if = "Option::is_none")]
pub topic: Option<String>,
/// Workspace is the workspace uuid holding this room. It is part of the room's address: two workspaces of one org may each hold a room with the same name, and only the pair identifies one.
#[serde(rename = "workspace", skip_serializing_if = "Option::is_none")]
pub workspace: Option<String>,
}
impl TeamRoom {
pub fn new() -> TeamRoom {
TeamRoom {
archived: None,
bindings: None,
direct: None,
id: None,
life: None,
members: None,
name: None,
private: None,
topic: None,
workspace: None,
}
}
}