pipedrive_rs/models/
get_notes_response200_additional_data.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
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct GetNotesResponse200AdditionalData {
16    #[serde(rename = "pagination", skip_serializing_if = "Option::is_none")]
17    pub pagination: Option<Box<crate::models::GetNotesResponse200AdditionalDataPagination>>,
18}
19
20impl GetNotesResponse200AdditionalData {
21    pub fn new() -> GetNotesResponse200AdditionalData {
22        GetNotesResponse200AdditionalData {
23            pagination: None,
24        }
25    }
26}
27
28