pub struct CipherMiniResponseModel {Show 18 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 deleted_date: Option<String>,
pub reprompt: Option<CipherRepromptType>,
}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>§deleted_date: Option<String>§reprompt: Option<CipherRepromptType>Implementations§
source§impl CipherMiniResponseModel
impl CipherMiniResponseModel
pub fn new() -> CipherMiniResponseModel
Trait Implementations§
source§impl Clone for CipherMiniResponseModel
impl Clone for CipherMiniResponseModel
source§fn clone(&self) -> CipherMiniResponseModel
fn clone(&self) -> CipherMiniResponseModel
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 Debug for CipherMiniResponseModel
impl Debug for CipherMiniResponseModel
source§impl Default for CipherMiniResponseModel
impl Default for CipherMiniResponseModel
source§fn default() -> CipherMiniResponseModel
fn default() -> CipherMiniResponseModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CipherMiniResponseModel
impl<'de> Deserialize<'de> for CipherMiniResponseModel
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<CipherMiniResponseModel> for CipherMiniResponseModel
impl PartialEq<CipherMiniResponseModel> for CipherMiniResponseModel
source§fn eq(&self, other: &CipherMiniResponseModel) -> bool
fn eq(&self, other: &CipherMiniResponseModel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.