/*
* Asana
*
* This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
/// TeamCompactAllOf : A *team* is used to group related projects and people together within an organization. Each project in an organization is associated with a team.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct TeamCompactAllOf {
/// The name of the team.
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
}
impl TeamCompactAllOf {
/// A *team* is used to group related projects and people together within an organization. Each project in an organization is associated with a team.
pub fn new() -> TeamCompactAllOf {
TeamCompactAllOf { name: None }
}
}