pipedrive_rs/models/
get_notes_response200_data_inner_organization.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/// GetNotesResponse200DataInnerOrganization : The organization the note is attached to
12
13
14
15#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GetNotesResponse200DataInnerOrganization {
17    /// The name of the organization the note is attached to
18    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
19    pub name: Option<String>,
20}
21
22impl GetNotesResponse200DataInnerOrganization {
23    /// The organization the note is attached to
24    pub fn new() -> GetNotesResponse200DataInnerOrganization {
25        GetNotesResponse200DataInnerOrganization {
26            name: None,
27        }
28    }
29}
30
31