pipedrive-rs 0.1.0

Rust PipedriveClient
Documentation
/*
 * Pipedrive API v1
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.0.0
 * 
 * Generated by: https://openapi-generator.tech
 */

/// GetActivitiesCollectionResponse200AdditionalData : The additional data of the list



#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetActivitiesCollectionResponse200AdditionalData {
    /// The first item on the next page. The value of the `next_cursor` field will be `null` if you have reached the end of the dataset and there’s no more pages to be returned.
    #[serde(rename = "next_cursor", skip_serializing_if = "Option::is_none")]
    pub next_cursor: Option<String>,
}

impl GetActivitiesCollectionResponse200AdditionalData {
    /// The additional data of the list
    pub fn new() -> GetActivitiesCollectionResponse200AdditionalData {
        GetActivitiesCollectionResponse200AdditionalData {
            next_cursor: None,
        }
    }
}