/*
* 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
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetGoalResultResponse200Data {
/// The numeric progress of the goal
#[serde(rename = "progress", skip_serializing_if = "Option::is_none")]
pub progress: Option<i32>,
#[serde(rename = "goal", skip_serializing_if = "Option::is_none")]
pub goal: Option<Box<crate::models::AddOrUpdateGoalResponse200DataGoal>>,
}
impl GetGoalResultResponse200Data {
pub fn new() -> GetGoalResultResponse200Data {
GetGoalResultResponse200Data {
progress: None,
goal: None,
}
}
}