bitwarden_api_api/models/
selection_read_only_response_model.rsuse serde::{Deserialize, Serialize};
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SelectionReadOnlyResponseModel {
#[serde(rename = "id", skip_serializing_if = "Option::is_none")]
pub id: Option<uuid::Uuid>,
#[serde(rename = "readOnly", skip_serializing_if = "Option::is_none")]
pub read_only: Option<bool>,
#[serde(rename = "hidePasswords", skip_serializing_if = "Option::is_none")]
pub hide_passwords: Option<bool>,
#[serde(rename = "manage", skip_serializing_if = "Option::is_none")]
pub manage: Option<bool>,
}
impl SelectionReadOnlyResponseModel {
pub fn new() -> SelectionReadOnlyResponseModel {
SelectionReadOnlyResponseModel {
id: None,
read_only: None,
hide_passwords: None,
manage: None,
}
}
}