pipedrive_rs/models/
get_notes_response200_data_inner_deal.rs

1/*
2 * Pipedrive API v1
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11/// GetNotesResponse200DataInnerDeal : The deal this note is attached to
12
13
14
15#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GetNotesResponse200DataInnerDeal {
17    /// The title of the deal this note is attached to
18    #[serde(rename = "title", skip_serializing_if = "Option::is_none")]
19    pub title: Option<String>,
20}
21
22impl GetNotesResponse200DataInnerDeal {
23    /// The deal this note is attached to
24    pub fn new() -> GetNotesResponse200DataInnerDeal {
25        GetNotesResponse200DataInnerDeal {
26            title: None,
27        }
28    }
29}
30
31