bitwarden_api_api/models/
organization_auto_enroll_status_response_model.rs1use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct OrganizationAutoEnrollStatusResponseModel {
17 #[serde(rename = "object", skip_serializing_if = "Option::is_none")]
18 pub object: Option<String>,
19 #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
20 pub id: Option<uuid::Uuid>,
21 #[serde(
22 rename = "resetPasswordEnabled",
23 skip_serializing_if = "Option::is_none"
24 )]
25 pub reset_password_enabled: Option<bool>,
26}
27
28impl OrganizationAutoEnrollStatusResponseModel {
29 pub fn new() -> OrganizationAutoEnrollStatusResponseModel {
30 OrganizationAutoEnrollStatusResponseModel {
31 object: None,
32 id: None,
33 reset_password_enabled: None,
34 }
35 }
36}