/*
* 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
*/
/// SectionCompactAllOf : A *section* is a subdivision of a project that groups tasks together. It can either be a header above a list of tasks in a list view or a column in a board view of a project.
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct SectionCompactAllOf {
/// The name of the section (i.e. the text displayed as the section header).
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
}
impl SectionCompactAllOf {
/// A *section* is a subdivision of a project that groups tasks together. It can either be a header above a list of tasks in a list view or a column in a board view of a project.
pub fn new() -> SectionCompactAllOf {
SectionCompactAllOf { name: None }
}
}