pipedrive_rs/models/
user_assignments_to_permission_set_response200.rs1#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct UserAssignmentsToPermissionSetResponse200 {
16 #[serde(rename = "success", skip_serializing_if = "Option::is_none")]
18 pub success: Option<bool>,
19 #[serde(rename = "data", skip_serializing_if = "Option::is_none")]
21 pub data: Option<Vec<crate::models::UserAssignmentsToPermissionSetResponse200AllOfDataInner>>,
22}
23
24impl UserAssignmentsToPermissionSetResponse200 {
25 pub fn new() -> UserAssignmentsToPermissionSetResponse200 {
26 UserAssignmentsToPermissionSetResponse200 {
27 success: None,
28 data: None,
29 }
30 }
31}
32
33