/*
* 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
*/
/// PipelineDetailsAllOfDealsSummaryPerCurrency : The currency count summary
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct PipelineDetailsAllOfDealsSummaryPerCurrency {
/// Deals count per currency. This parameter is dynamic and changes according to `currency_id` value.
#[serde(rename = "CURRENCY_ID", skip_serializing_if = "Option::is_none")]
pub currency_id: Option<i32>,
}
impl PipelineDetailsAllOfDealsSummaryPerCurrency {
/// The currency count summary
pub fn new() -> PipelineDetailsAllOfDealsSummaryPerCurrency {
PipelineDetailsAllOfDealsSummaryPerCurrency {
currency_id: None,
}
}
}