Struct bitwarden_api_api::models::cipher_mini_details_response_model::CipherMiniDetailsResponseModel
source · pub struct CipherMiniDetailsResponseModel {Show 20 fields
pub object: Option<String>,
pub id: Option<String>,
pub organization_id: Option<String>,
pub _type: Option<CipherType>,
pub data: Option<Value>,
pub name: Option<String>,
pub notes: Option<String>,
pub login: Option<Box<CipherLoginModel>>,
pub card: Option<Box<CipherCardModel>>,
pub identity: Option<Box<CipherIdentityModel>>,
pub secure_note: Option<Box<CipherSecureNoteModel>>,
pub fields: Option<Vec<CipherFieldModel>>,
pub password_history: Option<Vec<CipherPasswordHistoryModel>>,
pub attachments: Option<Vec<AttachmentResponseModel>>,
pub organization_use_totp: Option<bool>,
pub revision_date: Option<String>,
pub creation_date: Option<String>,
pub deleted_date: Option<String>,
pub reprompt: Option<CipherRepromptType>,
pub collection_ids: Option<Vec<String>>,
}
Fields§
§object: Option<String>
§id: Option<String>
§organization_id: Option<String>
§_type: Option<CipherType>
§data: Option<Value>
§name: Option<String>
§notes: Option<String>
§login: Option<Box<CipherLoginModel>>
§card: Option<Box<CipherCardModel>>
§identity: Option<Box<CipherIdentityModel>>
§secure_note: Option<Box<CipherSecureNoteModel>>
§fields: Option<Vec<CipherFieldModel>>
§password_history: Option<Vec<CipherPasswordHistoryModel>>
§attachments: Option<Vec<AttachmentResponseModel>>
§organization_use_totp: Option<bool>
§revision_date: Option<String>
§creation_date: Option<String>
§deleted_date: Option<String>
§reprompt: Option<CipherRepromptType>
§collection_ids: Option<Vec<String>>
Implementations§
Trait Implementations§
source§impl Clone for CipherMiniDetailsResponseModel
impl Clone for CipherMiniDetailsResponseModel
source§fn clone(&self) -> CipherMiniDetailsResponseModel
fn clone(&self) -> CipherMiniDetailsResponseModel
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for CipherMiniDetailsResponseModel
impl Default for CipherMiniDetailsResponseModel
source§fn default() -> CipherMiniDetailsResponseModel
fn default() -> CipherMiniDetailsResponseModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CipherMiniDetailsResponseModel
impl<'de> Deserialize<'de> for CipherMiniDetailsResponseModel
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<CipherMiniDetailsResponseModel> for CipherMiniDetailsResponseModel
impl PartialEq<CipherMiniDetailsResponseModel> for CipherMiniDetailsResponseModel
source§fn eq(&self, other: &CipherMiniDetailsResponseModel) -> bool
fn eq(&self, other: &CipherMiniDetailsResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.