asana/models/inline_object_12.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 InlineObject12 {
13 #[serde(rename = "data", skip_serializing_if = "Option::is_none")]
14 pub data: Option<Box<crate::models::RemoveCustomFieldSettingRequest>>,
15}
16
17impl InlineObject12 {
18 pub fn new() -> InlineObject12 {
19 InlineObject12 { data: None }
20 }
21}