/*
* 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
*/
/// GetRoleResponse200AllOfAdditionalData : The additional data in the role
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetRoleResponse200AllOfAdditionalData {
#[serde(rename = "settings", skip_serializing_if = "Option::is_none")]
pub settings: Option<Box<crate::models::GetRoleResponse200AllOfAdditionalDataSettings>>,
}
impl GetRoleResponse200AllOfAdditionalData {
/// The additional data in the role
pub fn new() -> GetRoleResponse200AllOfAdditionalData {
GetRoleResponse200AllOfAdditionalData {
settings: None,
}
}
}