asana/models/
inline_object_16.rs

1/*
2 * Asana
3 *
4 * 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).
5 *
6 * The version of the OpenAPI document: 1.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
12pub struct InlineObject16 {
13    #[serde(rename = "data", skip_serializing_if = "Option::is_none")]
14    pub data: Option<Box<crate::models::ProjectRequest>>,
15}
16
17impl InlineObject16 {
18    pub fn new() -> InlineObject16 {
19        InlineObject16 { data: None }
20    }
21}